Esempio n. 1
0
 public PreciseImportService(IPreciseCoverage4GRepository repository,
     ITownPreciseCoverage4GStatRepository regionRepository,
     IENodebRepository eNodebRepository, ITownRepository townRepository)
 {
     _repository = repository;
     _regionRepository = regionRepository;
     _eNodebRepository = eNodebRepository;
     _townRepository = townRepository;
     if (PreciseCoverage4Gs == null)
         PreciseCoverage4Gs = new Stack<PreciseCoverage4G>();
     if (TownPreciseViews == null)
         TownPreciseViews = new List<TownPreciseView>();
 }
 public PreciseImportService(IPreciseCoverage4GRepository repository,
                             ITownPreciseCoverage4GStatRepository regionRepository,
                             IENodebRepository eNodebRepository, ITownRepository townRepository,
                             IPreciseMongoRepository mongoRepository)
 {
     _repository       = repository;
     _regionRepository = regionRepository;
     _eNodebRepository = eNodebRepository;
     _townRepository   = townRepository;
     _mongoRepository  = mongoRepository;
     if (PreciseCoverage4Gs == null)
     {
         PreciseCoverage4Gs = new Stack <PreciseCoverage4G>();
     }
 }
 public PreciseImportService(IPreciseCoverage4GRepository repository,
                             ITownPreciseCoverage4GStatRepository regionRepository,
                             IENodebRepository eNodebRepository, ITownRepository townRepository)
 {
     _repository       = repository;
     _regionRepository = regionRepository;
     _eNodebRepository = eNodebRepository;
     _townRepository   = townRepository;
     if (PreciseCoverage4Gs == null)
     {
         PreciseCoverage4Gs = new Stack <PreciseCoverage4G>();
     }
     if (TownPreciseViews == null)
     {
         TownPreciseViews = new List <TownPreciseView>();
     }
 }
Esempio n. 4
0
 public PreciseRegionStatService(ITownPreciseCoverage4GStatRepository statRepository,
                                 ITownRepository townRepository)
 {
     _statRepository = statRepository;
     _townRepository = townRepository;
 }
 public PreciseRegionStatService(ITownPreciseCoverage4GStatRepository statRepository,
     ITownRepository townRepository)
 {
     _statRepository = statRepository;
     _townRepository = townRepository;
 }