public CustomerService(
     IMapper mapper,
     IUnitOfWorkCustomer unitOfWork)
 {
     _mapper     = mapper;
     _unitOfWork = unitOfWork;
 }
示例#2
0
 public CustomerService(IUnitOfWorkCustomer unitOfWork, IMapper mapper)
 {
     _unitOfWork = unitOfWork;
     _mapper     = mapper;
 }