public ConsultationsController(
     IConsultationApi consultationApi,
     IMapper mapper,
     IClinicApi clinicApi,
     IPatientApi patientApi)
 {
     this.consultationApi = consultationApi;
     this.mapper          = mapper;
     this.clinicApi       = clinicApi;
     this.patientApi      = patientApi;
 }
 public AppointmentsController(
     IAppointmentApi appointmentApi,
     IConsultationApi consultationApi,
     IClinicApi clinicApi,
     IPatientApi patientApi,
     IMapper mapper
     )
 {
     this.appointmentApi  = appointmentApi;
     this.consultationApi = consultationApi;
     this.clinicApi       = clinicApi;
     this.patientApi      = patientApi;
     this.mapper          = mapper;
 }