public ReportController(IReportService reportService, IGearFaultService gearFaultService, IStationService stationService, IReportedService reportedService, ISectiontService sectionService, IUserService userService)
 {
     this.ReportService     = reportService;
     this.UserService       = userService;
     this.DepartmentService = reportedService;
     this.GearFaultService  = gearFaultService;
     this.BoardService      = stationService;
     this.SectionService    = sectionService;
 }
 public GearFaultController(IGearFaultService gearFaultService)
 {
     this.GearFaultService = gearFaultService;
 }