public LabDataService(DropDownListContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
 }
예제 #2
0
 public ParameterService(DropDownListContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
 }
예제 #3
0
 public HospitalListController(DropDownListContext db, IMapper mapper)
 {
     _service = new HospitalDataService(db, mapper);
 }
예제 #4
0
 public LabListController(DropDownListContext db, IMapper mapper)
 {
     _service = new LabDataService(db, mapper);
 }
 public ParameterListController(DropDownListContext db, IMapper mapper)
 {
     _service = new ParameterService(db, mapper);
 }
 public AreaHealthListController(DropDownListContext db, IMapper mapper)
 {
     _service = new AreaHealthDataService(db, mapper);
 }
예제 #7
0
 public AreaHealthDataService(DropDownListContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
 }
 public ProvinceListController(DropDownListContext db, IMapper mapper)
 {
     _service = new ProvinceDataService(db, mapper);
 }