예제 #1
0
 public IEnumerable <Account> GetAll()
 {
     return(accountDAO.GetAll());
 }
예제 #2
0
 public AccountsLogic()
 {
     accountDAO = DAOContainer.AccountDAO;
     accounts   = accountDAO.GetAll().ToList();
 }