Пример #1
0
 public void ImportLteInfo(IEnumerable <ENodeb> lteRepository)
 {
     if (lteRepository != null && ENodebId == -1)
     {
         ENodeb eNodeb = lteRepository.FirstOrDefault(
             x => x.TownId == TownId && x.Name == Name);
         if (eNodeb != null &&
             eNodeb.Distance(this) < 0.05)
         {
             ENodebId = eNodeb.ENodebId;
         }
     }
 }
Пример #2
0
 public EvaluationOutdoorCell(ENodeb eNodeb, Cell cell) :
     this(eNodeb.Name, cell)
 {
 }