public ResponseClass GetCurrentTime()
 {
     AccountService account = new AccountService();
     return account.GetCurrentTime();
 }
 public ResponseClass GetAccount(string firstname)
 {
     AccountService account = new AccountService();
     return account.GetAccount(firstname);
 }