public ISchedulerIMP Create()
        {
            SchedulerConfigurationService schedulerConfigurationService = new SchedulerConfigurationService();
            SchedulerIMPForCRM            schedulerImpForCrm            = new SchedulerIMPForCRM(schedulerConfigurationService);

            return(schedulerImpForCrm);
        }
Exemple #2
0
        public AppSchedulerControl Create()
        {
            SchedulerConfigurationService schedulerConfigurationService = new SchedulerConfigurationService();
            SchedulerRepository           schedulerRepository           = new SchedulerRepository(schedulerConfigurationService);
            AppSchedulerControl           appSchedulerControl           = new AppSchedulerControl(schedulerRepository);

            return(appSchedulerControl);
        }
Exemple #3
0
 public SchedulerRepository(SchedulerConfigurationService schedulerConfigurationService)
 {
     _schedulerConfigurationService = schedulerConfigurationService;
 }