Esempio n. 1
0
 public SQSListener(string dASAppointmentsQueueName, IAppointmentStorageService appointmentStorageService,
                    IAppointmentOpLogStorageService appointmentOpLogStorageService, IConflictsManager conflictsManager)
 {
     DASAppointmentsQueueName       = dASAppointmentsQueueName;
     AppointmentStorageService      = appointmentStorageService;
     AppointmentOpLogStorageService = appointmentOpLogStorageService;
     ConflictsManager = conflictsManager;
 }
Esempio n. 2
0
 public AppointmentController(IAppointmentStorageService appointmentStorageService, IQueueClientService queueClientService)
 {
     _appointmentStorageService = appointmentStorageService;
     _queueClientService        = queueClientService;
 }