Exemplo n.º 1
0
 public CustomerTransactionService(ICustomerTransactionRepository repo)
 {
     _repo = repo;
 }
Exemplo n.º 2
0
 public CustomerTransactionWorkflow(ICustomerTransactionRepository customerTransactionRepository
                                    , IUnitOfWork unitOfWork)
 {
     _customerTransactionRepository = customerTransactionRepository;
     _unitOfWork = unitOfWork;
 }