public EstimationController(IEstimationProjectRepository repoWrapper)
 {
     _repoWrapper = repoWrapper;
 }
Exemplo n.º 2
0
 public CreateEstimationCommandHandler(IEstimationProjectRepository estimationRepo, IMapper mapper)
 {
     _estimationRepo = estimationRepo;
     _mapper         = mapper;
 }
Exemplo n.º 3
0
 public GetEstimationDetailQueryHandler(IEstimationProjectRepository estimationRepo, IMapper mapper)
 {
     _estimationRepo = estimationRepo;
     _mapper         = mapper;
 }
Exemplo n.º 4
0
 public GetAllEstimatoinsQueryHandler(IEstimationProjectRepository estimationRepo, IMapper mapper)
 {
     _estimationRepo = estimationRepo;
     _mapper         = mapper;
 }