public PatientAppointmentService(IUnitOfWork uow, IPatientAppointmentRepository patientAppointment,
                                  IPatientAdmissionRepository patientAdmission, IPatientService PService)
 {
     _uow = uow;
     _patientAppointment = patientAppointment;
     _patientAdmission = patientAdmission;
     _PService = PService;
 }
        public PatientService(IPatientAdmissionRepository patientAdmissionRepository, IUnitOfWork uow, ICarePlanRepository carePlan,
                            IPatientAppointmentRepository patientAppointment)
        {

            this._patientAdmissionRepository = patientAdmissionRepository;
            this._uow = uow;
            this._carePlan = carePlan;
            this._patientAppointment = patientAppointment;
        }