public QCRangeService(MasterManagementContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
 }
 public SpecimenController(MasterManagementContext db, IMapper mapper)
 {
     _service = new SpecimenService(db, mapper);
 }
예제 #3
0
 public WardTypeController(MasterManagementContext db, IMapper mapper)
 {
     _service = new WardTypeService(db, mapper);
 }
 public AntibioticService(MasterManagementContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
 }
 public MasterTemplateService(MasterManagementContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
 }
예제 #6
0
 public AntibioticController(MasterManagementContext db, IMapper mapper)
 {
     _service = new AntibioticService(db, mapper);
 }
 public ExpertRuleController(MasterManagementContext db, IMapper mapper)
 {
     _service = new ExpertRuleService(db, mapper);
 }
예제 #8
0
 public OrganismController(MasterManagementContext db, IMapper mapper)
 {
     _service = new OrganismService(db, mapper);
 }
 public QCRangeController(MasterManagementContext db, IMapper mapper)
 {
     _service = new QCRangeService(db, mapper);
 }
 public WardTypeService(MasterManagementContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
 }
예제 #11
0
 public SpecimenService(MasterManagementContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
 }
 public MasterHospitalController(MasterManagementContext db, IMapper mapper)
 {
     _service = new MasterHospitalService(db, mapper);
 }
예제 #13
0
 public WHONETColumnService(MasterManagementContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
 }
예제 #14
0
 public ExpertRuleService(MasterManagementContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
 }
 public WHONETColumnController(MasterManagementContext db, IMapper mapper)
 {
     _service = new WHONETColumnService(db, mapper);
 }
 public MasterTemplateController(MasterManagementContext db, IMapper mapper)
 {
     _service = new MasterTemplateService(db, mapper);
 }
 public OrganismService(MasterManagementContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
 }
 public MasterHospitalService(MasterManagementContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
 }