public DrugsController(IDrugService drugService, IDrugTypeService drugTypeService, IDrugInRoomService drugInRoomService)
 {
     _drugService       = drugService;
     _drugTypeService   = drugTypeService;
     _drugInRoomService = drugInRoomService;
 }
示例#2
0
 public DrugInRoomController(IDrugInRoomService drugInRoomService)
 {
     _drugInRoomService = drugInRoomService;
 }