Пример #1
0
 public SyncService(ISettingsProvider settingsProvider, ICalendarUpdateService calendarUpdateService,
     IMessageService messageService, ApplicationLogger applicationLogger)
 {
     _settingsProvider = settingsProvider;
     _calendarUpdateService = calendarUpdateService;
     _messageService = messageService;
     _applicationLogger = applicationLogger.GetLogger(GetType());
 }
Пример #2
0
 public SyncService(ISettingsProvider settingsProvider, ICalendarUpdateService calendarUpdateService,
                    IMessageService messageService, ApplicationLogger applicationLogger)
 {
     _settingsProvider      = settingsProvider;
     _calendarUpdateService = calendarUpdateService;
     _messageService        = messageService;
     _applicationLogger     = applicationLogger.GetLogger(GetType());
 }
Пример #3
0
 public SyncService(ICalendarUpdateService calendarUpdateService,
                    IContactUpdateService contactUpdateService, ITaskUpdateService taskUpdateService,
                    IMessageService messageService, ApplicationLogger applicationLogger)
 {
     CalendarUpdateService = calendarUpdateService;
     ContactUpdateService  = contactUpdateService;
     TaskUpdateService     = taskUpdateService;
     MessageService        = messageService;
     Logger = applicationLogger.GetLogger(GetType());
 }
Пример #4
0
 public SyncService(ICalendarUpdateService calendarUpdateService,
     IContactUpdateService contactUpdateService, ITaskUpdateService taskUpdateService,
     IMessageService messageService, ApplicationLogger applicationLogger)
 {
     CalendarUpdateService = calendarUpdateService;
     ContactUpdateService = contactUpdateService;
     TaskUpdateService = taskUpdateService;
     MessageService = messageService;
     Logger = applicationLogger.GetLogger(GetType());
 }