Exemple #1
0
 public GetAppointmentsQueryHandler(AppointmentRepository appointmentRepository, AppointmentRequestRepository appointmentRequestRepository, AddressBook addressBook)
 {
     this.appointmentRepository        = appointmentRepository;
     this.appointmentRequestRepository = appointmentRequestRepository;
     this.addressBook = addressBook;
 }
Exemple #2
0
 public CreateAppointmentCommandHandler(AppointmentRequestRepository appointmentRequestRepository)
 {
     this.appointmentRequestRepository = appointmentRequestRepository;
 }