public AllContacts GetAllContacts()
 {
     Account account = new Account();
     return account.GetAllContacts();
 }
 public AccountConsole UpdateAccount(string AccountID, string FirstName, string MiddleName, string LastName, string Address, string City, string Province, int ZipCode, int TelephoneNumber, int MobileNumber, string Email)
 {
     Account account = new Account();
     return account.UpdateAccount(AccountID,FirstName, MiddleName, LastName, Address, City, Province, ZipCode, TelephoneNumber, MobileNumber, Email);
 }
 public AccountConsole DeleteAccount(string AccountID)
 {
     Account account = new Account();
     return account.DeleteAccount(AccountID);
 }