public MobileAccount(string phoneNumber, Dictionary <string, string> addressBook)
        {
            PhoneNumber = phoneNumber;
            valueList   = addressBook.Values.ToList();
            keyList     = addressBook.Keys.ToList();

            Money = MobileOperator.GetBalance(this);
        }
 public MobileAccount(string phoneNumber)
 {
     PhoneNumber = phoneNumber;
     Money       = MobileOperator.GetBalance(this);
 }