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