Exemplo n.º 1
0
 public LabRequestApp(IUnitOfWork <HsDbContext> uow, IUsersService usersService, ILabItemApp labItemApp, IPatientApp patientApp)
 {
     _uow           = uow;
     _service       = _uow.GetRepository <LabSheetEntity>();
     _detailService = _uow.GetRepository <LabSheetItemsEntity>();
     _usersService  = usersService;
     _labItemApp    = labItemApp;
     _patientApp    = patientApp;
 }
Exemplo n.º 2
0
 public LabItemController(ILabItemApp labItemApp, IMapper mapper)
 {
     _labItemApp = labItemApp;
     _mapper     = mapper;
 }