public HistoryController(IHistoryService historyService, IStatusTypeService statusTypeService, IRepairPlaceService repairPlaceService, IEquipmentService equipmentService, IEmployeeService employeeService)
 {
     HistoryService     = historyService;
     StatusTypeService  = statusTypeService;
     RepairPlaceService = repairPlaceService;
     EquipmentService   = equipmentService;
     EmployeeService    = employeeService;
 }
 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;
 }
 public StatusTypeController(IStatusTypeService service)
 {
     StatusTypeService = service;
 }
 public StatusTypeController(IStatusTypeService statusTypeService)
 {
     _statusTypeService = statusTypeService;
 }