public CernerIntegrationServices(ICernerAppointmentServices cernerAppointmentService, ICernerPatientServices cernerPatientService, IFHIRConfigurationServices fhirConfigurationServices,
                                  IUnitOfWork <IntegrationDB> uow, IUserInfo userInfo) : base(uow.GetRepository <CernerAppointment>(), userInfo)
 {
     _uow = uow;
     _cernerAppointmentService  = cernerAppointmentService;
     _cernerPatientService      = cernerPatientService;
     _fhirConfigurationServices = fhirConfigurationServices;
 }
 public CernerPatientServices(IPatientServices patientServices, IAssignmentServices assignmentServices, IAdmissionServices admissionServices,
                              ICernerAppointmentServices cernerAppointmentService, IUnitOfWork <ChargeCaptureDB> uow, IUserInfo userInfo) : base(uow.GetRepository <CernerPatient>(), userInfo)
 {
     _uow                      = uow;
     _patientServices          = patientServices;
     _assignmentServices       = assignmentServices;
     _admissionServices        = admissionServices;
     _cernerAppointmentService = cernerAppointmentService;
 }