Ejemplo n.º 1
0
 public VisitController(IMapper mapper, DataContext context, IPatientRepo patientRepo, IUnitOfWork unitOfWork)
 {
     _mapper      = mapper;
     _context     = context;
     _patientRepo = patientRepo;
     _unitOfWork  = unitOfWork;
 }
Ejemplo n.º 2
0
 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);
 }
Ejemplo n.º 4
0
 public IcuOccupancyController(IPatientRepo repository)
 {
     _repository = repository;
 }
Ejemplo n.º 5
0
 public PatientManager(IPatientRepo repo)
 {
     _repo = repo;
 }
Ejemplo n.º 6
0
 public AppointmentsController(IAppointmentRepository repository, IBillingRepository billingRepository, IPatientRepo patientRepo)
 {
     _repository        = repository;
     _patientRepo       = patientRepo;
     _billingRepository = billingRepository;
 }
Ejemplo n.º 7
0
 public CheckInController(ICheckInRepository checkInRepository, IPatientRepo patientRepo, IBillingRepository billingRepository)
 {
     _checkInRepository = checkInRepository;
     _billingRepository = billingRepository;
     _patientRepo       = patientRepo;
 }
Ejemplo n.º 8
0
 public PatientService()
 {
     _repo = new PatientRepo(_context);
 }
Ejemplo n.º 9
0
 public PatientLogic(IPatientRepo patientRepo)
 {
     _pr = patientRepo;
 }
Ejemplo n.º 10
0
 public PatientLogic(IPatientRepo patientRepo)
 {
     _repo = patientRepo;
 }