public RecordingController(
     ICalendarService calendarService,
     ICustomerRepository customerRepository,
     IMapperWrapper mapper, IMarketApiClient marketApiClient,
     IWorkerRepository workerRepository,
     ICalendarRepository <WorkerScheduleRecord> workerCalendarRepository,
     ICalendarRepository <ServiceCalendarRecord> serviceCalendarRepository,
     IOnlineServiceListRepository onlineServiceListRepository,
     IRecordingInfoConverter recordingInfoConverter,
     ITimeZoneSettingsRepository timeZoneSettingsRepository)
 {
     this.calendarService             = calendarService;
     this.mapper                      = mapper;
     this.marketApiClient             = marketApiClient;
     this.workerRepository            = workerRepository;
     this.workerCalendarRepository    = workerCalendarRepository;
     this.serviceCalendarRepository   = serviceCalendarRepository;
     this.onlineServiceListRepository = onlineServiceListRepository;
     this.recordingInfoConverter      = recordingInfoConverter;
     this.timeZoneSettingsRepository  = timeZoneSettingsRepository;
     this.customerRepository          = customerRepository;
 }
Esempio n. 2
0
 public TimeZoneController(ITimeZoneSettingsRepository timeZoneSettingsRepository, IMapperWrapper mapperWrapper)
 {
     this.timeZoneSettingsRepository = timeZoneSettingsRepository;
     this.mapperWrapper = mapperWrapper;
 }
Esempio n. 3
0
 public ShopTimeZoneController(ITimeZoneSettingsRepository timeZoneSettingsRepository)
 {
     this.timeZoneSettingsRepository = timeZoneSettingsRepository;
 }