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