Пример #1
0
 public KeepAccountService()
 {
     _dao = new AccountBookDAO();
 }
Пример #2
0
 public AccountBookService(IUnitOfWork unitOfWork)
 {
     _accountBookRepository = new Repository <AccountBook>(unitOfWork);
     _dao = new AccountBookDAO();
 }