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