public static void TestCalcBill(GSM testPhone, double pricePerMin)
 {
     double bill = testPhone.CalcBill(pricePerMin);
     Console.WriteLine("Your bill is: {0:C}",bill);
 }