MyService.MyService C# (CSharp) Method

MyService() public method

public MyService ( IJobContainer sequentialJobs, IJobContainer parallelJobs )
sequentialJobs IJobContainer
parallelJobs IJobContainer
        public MyService(
            IJobContainer sequentialJobs,
            IJobContainer parallelJobs)
        {
            this.sequentialJobs = sequentialJobs;
            this.parallelJobs = parallelJobs;
            this.sequentialJobs.Add(new DoSequentialJob1());
            this.sequentialJobs.Add(new DoSequentialJob2());
            this.sequentialJobs.Add(new DoSequentialJob3));
            this.parallelJobs.Add(new DoParallelJobA());
            this.parallelJobs.Add(new DoParallelJobB());
            this.parallelJobs.Add(new DoParallelJobC());
        }
        public void RunJobs(IProgress<MyCustomProgress> progress)

Same methods

MyService::MyService ( )