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