Ejemplo n.º 1
0
        public static void BestToNumber(int count = 5, double weightCall = 1, double weightMail = 0.5)
        {
            var routings = MobileOperator.GetRoutings();

            var bestRoutings = routings.GroupBy(rout => rout.ToNumber)
                               .Select(ToNumberGroup => new {
                ToNumber  = ToNumberGroup.Key,
                CountMail = ToNumberGroup.Count(x => x.Type == RoutingType.Mail),
                CountCall = ToNumberGroup.Count(x => x.Type == RoutingType.Call)
            })
                               .OrderByDescending(number => number.CountCall * weightCall + number.CountMail * weightMail).Take(count);

            foreach (var item in bestRoutings)
            {
                Console.WriteLine("Best ToNumber is {0}. Mail - {1}. Call - {2}.",
                                  item.ToNumber, item.CountMail, item.CountCall);
            }
        }
Ejemplo n.º 2
0
 public MobileAccount(string Number)
 {
     this.number = Number;
     MobileOperator.AddNewMobileAcount(this, GetCall, GetMail);
 }