public void TestFixtureSetup()
 {
     Service = new CellDumpService(BtsRepository.Object, CellRepository.Object);
     BtsRepository.MockOperation();
     BtsRepository.MockThreeBtss();
     CellRepository.MockRepositorySaveItems <Cell, ICellRepository>();
     CoreMapperService.MapCell();
     ParametersDumpMapperService.MapENodebBtsIdService();
 }
 public void TestFixtureSetup()
 {
     Service = new CellDumpService(BtsRepository.Object, CellRepository.Object, null);
     BtsRepository.MockOperation();
     BtsRepository.MockGetId<IBtsRepository, CdmaBts>();
     BtsRepository.MockThreeBtss();
     CellRepository.MockRepositorySaveItems<Cell, ICellRepository>();
     var module = new AbpAutoMapperModule(_typeFinder);
     module.PostInitialize();
 }
 public DumpLteRruController(CellDumpService service)
 {
     _service = service;
 }
 public DumpCellExcelController(CellDumpService service, BasicImportService importService)
 {
     _service       = service;
     _importService = importService;
 }
Example #5
0
 public DumpLteRruController(CellDumpService service)
 {
     _service = service;
 }
Example #6
0
 public NewCellExcelsController(BasicImportService service, CellDumpService dumpService)
 {
     _service = service;
     _dumpService = dumpService;
 }
Example #7
0
 public DumpCellExcelController(CellDumpService service, BasicImportService importService)
 {
     _service = service;
     _importService = importService;
 }
 public NewCellExcelsController(BasicImportService service, CellDumpService dumpService)
 {
     _service     = service;
     _dumpService = dumpService;
 }