예제 #1
0
 public Mutation(IBookAppointment bookAppointmentService, IWorkDay workDayService)
 {
     _bookAppointmentService = bookAppointmentService;
     _workDayService         = workDayService;
 }
예제 #2
0
 public Query(IBookAppointment bookAppointment, IProfile profile, IWorkDay workDay)
 {
     _bookAppointment = bookAppointment;
     _workDay         = workDay;
     _profile         = profile;
 }
 public BookAppointmentController(IBookAppointment bookAppointment)
 {
     I_BookAppointment = bookAppointment;
 }