Esempio n. 1
0
 public KeepAccountService()
 {
     _dao = new AccountBookDAO();
 }
Esempio n. 2
0
 public AccountBookService(IUnitOfWork unitOfWork)
 {
     _accountBookRepository = new Repository <AccountBook>(unitOfWork);
     _dao = new AccountBookDAO();
 }