コード例 #1
0
 public HistoryController(IHistoryService historyService, IStatusTypeService statusTypeService, IRepairPlaceService repairPlaceService, IEquipmentService equipmentService, IEmployeeService employeeService)
 {
     HistoryService     = historyService;
     StatusTypeService  = statusTypeService;
     RepairPlaceService = repairPlaceService;
     EquipmentService   = equipmentService;
     EmployeeService    = employeeService;
 }
コード例 #2
0
 public SearchController(IComponentTypeService componentTypeService, IComponentService componentService, IEquipmentTypeService equipmentTypeService, IEquipmentService equipmentService, IStatusTypeService statusTypeService, IRepairPlaceService repairPlaceService, IHistoryService historyService)
 {
     ComponentTypeService = componentTypeService;
     ComponentService     = componentService;
     EquipmentTypeService = equipmentTypeService;
     EquipmentService     = equipmentService;
     StatusTypeService    = statusTypeService;
     RepairPlaceService   = repairPlaceService;
     HistoryService       = historyService;
 }
コード例 #3
0
 public RepairPlaceController(IRepairPlaceService repairPlaceService)
 {
     RepairPlaceService = repairPlaceService;
 }