コード例 #1
0
 public QCRangeService(MasterManagementContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
 }
コード例 #2
0
 public SpecimenController(MasterManagementContext db, IMapper mapper)
 {
     _service = new SpecimenService(db, mapper);
 }
コード例 #3
0
 public WardTypeController(MasterManagementContext db, IMapper mapper)
 {
     _service = new WardTypeService(db, mapper);
 }
コード例 #4
0
 public AntibioticService(MasterManagementContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
 }
コード例 #5
0
 public MasterTemplateService(MasterManagementContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
 }
コード例 #6
0
 public AntibioticController(MasterManagementContext db, IMapper mapper)
 {
     _service = new AntibioticService(db, mapper);
 }
コード例 #7
0
 public ExpertRuleController(MasterManagementContext db, IMapper mapper)
 {
     _service = new ExpertRuleService(db, mapper);
 }
コード例 #8
0
 public OrganismController(MasterManagementContext db, IMapper mapper)
 {
     _service = new OrganismService(db, mapper);
 }
コード例 #9
0
 public QCRangeController(MasterManagementContext db, IMapper mapper)
 {
     _service = new QCRangeService(db, mapper);
 }
コード例 #10
0
 public WardTypeService(MasterManagementContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
 }
コード例 #11
0
 public SpecimenService(MasterManagementContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
 }
コード例 #12
0
 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;
 }
コード例 #15
0
 public WHONETColumnController(MasterManagementContext db, IMapper mapper)
 {
     _service = new WHONETColumnService(db, mapper);
 }
コード例 #16
0
 public MasterTemplateController(MasterManagementContext db, IMapper mapper)
 {
     _service = new MasterTemplateService(db, mapper);
 }
コード例 #17
0
 public OrganismService(MasterManagementContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
 }
コード例 #18
0
 public MasterHospitalService(MasterManagementContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
 }