Example #1
0
 public TownPreciseImportController(PreciseImportService service, CollegeCellViewService collegeCellViewService,
                                    CollegeStatService collegeService, PreciseStatService statService)
 {
     _service = service;
     _collegeCellViewService = collegeCellViewService;
     _collegeService         = collegeService;
     _statService            = statService;
 }
Example #2
0
 public KpiController(TownQueryService townService, KpiImportService importService,
                      PreciseImportService preciseImportService, WorkItemService workItemService)
 {
     _townService          = townService;
     _importService        = importService;
     _preciseImportService = preciseImportService;
     _workItemService      = workItemService;
 }
 public KpiController(TownQueryService townService, KpiImportService importService,
                      PreciseImportService preciseImportService, WorkItemService workItemService,
                      InterferenceMatrixService interferenceMatrix)
 {
     _townService          = townService;
     _importService        = importService;
     _preciseImportService = preciseImportService;
     _workItemService      = workItemService;
     _interferenceMatrix   = interferenceMatrix;
 }
 public PreciseMongoController(PreciseImportService service)
 {
     _service = service;
 }
 public TownPreciseImportController(PreciseImportService service)
 {
     _service = service;
 }
 public PreciseTestController(PreciseImportService service, ITownRepository townRepository)
 {
     _service        = service;
     _townRepository = townRepository;
 }