예제 #1
0
 public AgpsService(ITelecomAgpsRepository telecomAgpsRepository, IMobileAgpsRepository mobileAgpsRepository,
                    IUnicomAgpsRepository unicomAgpsRepository, IAgisDtPointRepository agisDtPointRepository)
 {
     _telecomAgpsRepository = telecomAgpsRepository;
     _mobileAgpsRepository  = mobileAgpsRepository;
     _unicomAgpsRepository  = unicomAgpsRepository;
     _agisDtPointRepository = agisDtPointRepository;
 }
예제 #2
0
        public NearestPciCellService(INearestPciCellRepository repository, ICellRepository cellRepository,
                                     IENodebRepository eNodebRepository, IAgisDtPointRepository agisRepository)
        {
            _repository       = repository;
            _cellRepository   = cellRepository;
            _eNodebRepository = eNodebRepository;
            _agisRepository   = agisRepository;

            if (NearestCells == null)
            {
                NearestCells = new Stack <NearestPciCell>();
            }
        }
        public NearestPciCellService(INearestPciCellRepository repository, ICellRepository cellRepository,
                                     IENodebRepository eNodebRepository, IAgisDtPointRepository agisRepository,
                                     ITownRepository townRepository, IMrGridRepository mrGridRepository,
                                     IAppStreamRepository streamRepository, IWebBrowsingRepository browsingRepository, IMrGridKpiRepository mrGridKpiRepository)
        {
            _repository       = repository;
            _cellRepository   = cellRepository;
            _eNodebRepository = eNodebRepository;
            _agisRepository   = agisRepository;

            _streamRepository    = streamRepository;
            _browsingRepository  = browsingRepository;
            _mrGridKpiRepository = mrGridKpiRepository;

            _townRepository = townRepository;
            _mrGridService  = new MrGridService(mrGridRepository);

            if (NearestCells == null)
            {
                NearestCells = new Stack <NearestPciCell>();
            }
        }