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