示例#1
0
 public void TestFixtureSetup()
 {
     _service = new BtsDumpService(_btsRepository.Object, _townRepository.Object);
     _btsRepository.MockOperation();
     _btsRepository.MockRepositorySaveItems <CdmaBts, IBtsRepository>();
     _townRepository.MockOpertion();
     _townRepository.MockSixTowns();
     ParametersDumpMapperService.MapFromBtsContainerService();
     AutoMapperHelper.CreateMap(typeof(BtsExcel));
 }
示例#2
0
 public NewBtsExcelsController(BasicImportService service, BtsDumpService dumpService)
 {
     _service     = service;
     _dumpService = dumpService;
 }
示例#3
0
 public DumpBtsExcelController(BtsDumpService service, BasicImportService importService)
 {
     _service       = service;
     _importService = importService;
 }