Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            MobileAccount mobile1 = new MobileAccount("0993422226");
            MobileAccount mobile2 = new MobileAccount("0502121212");

            mobile2.Call("099");
            mobile2.SendMail("0993422226");
        }
Ejemplo n.º 2
0
 public void Call(MobileAccount account)
 {
     Call(account.PhoneNumber);
 }
Ejemplo n.º 3
0
 public void SendMail(MobileAccount account)
 {
     SendMail(account.PhoneNumber);
 }