コード例 #1
0
 public TransportationPreciseController(PreciseStatService service, CollegeCellViewService collegeCellViewService,
                                        HotSpotService marketService, TownPreciseService townPreciseService)
 {
     _service = service;
     _collegeCellViewService = collegeCellViewService;
     _marketService          = marketService;
     _townPreciseService     = townPreciseService;
 }
コード例 #2
0
 public TownPreciseImportController(PreciseImportService service, CollegeCellViewService collegeCellViewService,
                                    CollegeStatService collegeService, PreciseStatService statService)
 {
     _service = service;
     _collegeCellViewService = collegeCellViewService;
     _collegeService         = collegeService;
     _statService            = statService;
 }
コード例 #3
0
 public CollegePreciseController(PreciseStatService service, CollegeCellViewService collegeCellViewService,
                                 CollegeStatService collegeService, TownPreciseService townMrsRsrpService)
 {
     _service = service;
     _collegeCellViewService = collegeCellViewService;
     _collegeService         = collegeService;
     _townMrsRsrpService     = townMrsRsrpService;
 }
コード例 #4
0
 public void TestFixtureSetup()
 {
     KpiMapperService.MapPreciseStat();
     _service = new PreciseStatService(_repository.Object, _eNodebRepository.Object);
     _repository.MockOperations();
     _eNodebRepository.MockOperations();
     _eNodebRepository.MockThreeENodebs();
     _cellRepository.MockOperations();
     _cellRepository.MockSixCells();
     _infrastructure.MockOperations();
     _infrastructure.MockSixCollegeCdmaCells();
 }
コード例 #5
0
 public PreciseStatController(PreciseStatService service, ENodebQueryService eNodebQueryService)
 {
     _service            = service;
     _eNodebQueryService = eNodebQueryService;
 }