public void TestFixtureSetup()
 {
     Service = new CellDumpService(BtsRepository.Object, CellRepository.Object);
     BtsRepository.MockOperation();
     BtsRepository.MockThreeBtss();
     CellRepository.MockRepositorySaveItems <Cell, ICellRepository>();
     CoreMapperService.MapCell();
     ParametersDumpMapperService.MapENodebBtsIdService();
 }
Exemplo n.º 2
0
 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();
 }
Exemplo n.º 3
0
 public DumpLteRruController(CellDumpService service)
 {
     _service = service;
 }
 public DumpCellExcelController(CellDumpService service, BasicImportService importService)
 {
     _service       = service;
     _importService = importService;
 }
Exemplo n.º 5
0
 public DumpLteRruController(CellDumpService service)
 {
     _service = service;
 }
Exemplo n.º 6
0
 public NewCellExcelsController(BasicImportService service, CellDumpService dumpService)
 {
     _service = service;
     _dumpService = dumpService;
 }
Exemplo n.º 7
0
 public DumpCellExcelController(CellDumpService service, BasicImportService importService)
 {
     _service = service;
     _importService = importService;
 }
Exemplo n.º 8
0
 public NewCellExcelsController(BasicImportService service, CellDumpService dumpService)
 {
     _service     = service;
     _dumpService = dumpService;
 }