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