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