Exemplo n.º 1
0
 public static Account Get(string accountId)
 {
     return(AccountDB.Get(accountId));
 }
Exemplo n.º 2
0
 public Account GetByID(Guid entityID)
 {
     return(_accountDAL.Get(a => a.ID == entityID));
 }