Example #1
0
 public AccountService(IAccountRepository repo, Infrastructure.IUnitOfWork unitOfWork)
 {
     this._repository = repo;
     this._unitOfWork = unitOfWork;
 }
Example #2
0
 public AccountRepository(Infrastructure.IUnitOfWork unitOfWork)
 {
     this._unitOfWork = unitOfWork;
 }
 internal CustomerService(Infrastructure.IUnitOfWork uow) : base(uow)
 {
 }