public VisitController(IMapper mapper, DataContext context, IPatientRepo patientRepo, IUnitOfWork unitOfWork) { _mapper = mapper; _context = context; _patientRepo = patientRepo; _unitOfWork = unitOfWork; }
public PatientController(IPatientRepo patientRepo, //IBloodGroupRepo bloodGroupRepo, ITitleRepo titleRepo, IBillingRepository _BillingRepo, IPatientServices ps, EmailConfiguration _config) { this.patientRepo = patientRepo; this.ps = ps; patientPayorTypes = new DataContextRepo <PatientPayorTypes>(); patientDB = new DataContextRepo <Patient>(); _ctx = new DataContext(); _emailHelper = EmailMessageHelper.instance(_config); this._Billingrepo = _BillingRepo; //this.bloodGroupRepo = bloodGroupRepo; }
public IcuOccupancyControllerTest() { _repository = new PatientRepository(Context); occupancyController = new IcuOccupancyController(_repository); }
public IcuOccupancyController(IPatientRepo repository) { _repository = repository; }
public PatientManager(IPatientRepo repo) { _repo = repo; }
public AppointmentsController(IAppointmentRepository repository, IBillingRepository billingRepository, IPatientRepo patientRepo) { _repository = repository; _patientRepo = patientRepo; _billingRepository = billingRepository; }
public CheckInController(ICheckInRepository checkInRepository, IPatientRepo patientRepo, IBillingRepository billingRepository) { _checkInRepository = checkInRepository; _billingRepository = billingRepository; _patientRepo = patientRepo; }
public PatientService() { _repo = new PatientRepo(_context); }
public PatientLogic(IPatientRepo patientRepo) { _pr = patientRepo; }
public PatientLogic(IPatientRepo patientRepo) { _repo = patientRepo; }