public IEnumerable <Account> GetAll()
 {
     return(accountDAL.GetAll());
 }
Esempio n. 2
0
 public List <Account> GetList()
 {
     return(_accountDAL.GetAll().ToList());
 }