internal MakeResponseWrapper(IMapper mapper)
 {
     _mapper        = mapper;
     _complexMapper = new ComplexMapper(_mapper);
 }
Exemplo n.º 2
0
 public PostService(IUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
     mapper      = new ComplexMapper(unitOfWork);
 }