Пример #1
0
 public CustomerTransactionService(ICustomerTransactionRepository repo)
 {
     _repo = repo;
 }
Пример #2
0
 public CustomerTransactionWorkflow(ICustomerTransactionRepository customerTransactionRepository
                                    , IUnitOfWork unitOfWork)
 {
     _customerTransactionRepository = customerTransactionRepository;
     _unitOfWork = unitOfWork;
 }