public void TestFixtureSetup()
 {
     var module = new AbpAutoMapperModule(_typeFinder);
     module.PostInitialize();
     _eNodebRepository.MockThreeENodebs();
     _repository.MockRangeCells();
     _service = new CellService(_repository.Object, _eNodebRepository.Object, _rruRepository.Object);
 }
Example #2
0
 public CellController(CellService service)
 {
     _service = service;
 }
Example #3
0
 public SectorViewController(CellService service)
 {
     _service = service;
 }
Example #4
0
 public LteRruController(CellService service)
 {
     _service = service;
 }