public KeepAccountService()
 {
     _dao = new AccountBookDAO();
 }
Example #2
0
 public AccountBookService(IUnitOfWork unitOfWork)
 {
     _accountBookRepository = new Repository <AccountBook>(unitOfWork);
     _dao = new AccountBookDAO();
 }