Ejemplo n.º 1
0
            public ConfirmedBidHandler(IUnitOfWork unitOfWork, IMapper mapper, IConfirmedBidService confirmedBidService, IBidRequestService bidRequestService, IProjectService projectService)
            {
                this.unitOfWork          = unitOfWork;
                this.mapper              = mapper;
                this.confirmedBidService = confirmedBidService;
                this.bidRequestService   = bidRequestService;

                this.projectService = projectService;
            }
Ejemplo n.º 2
0
 public ProjectDetailsHandler(IProjectService projectService, IUnitOfWork unitOfWork,
                              IBidRequestService bidRequestService, UserManager <ApplicationUser> userManager, ICountryService countryService)
 {
     this.projectService    = projectService;
     this.unitOfWork        = unitOfWork;
     this.bidRequestService = bidRequestService;
     this.userManager       = userManager;
     this.countryService    = countryService;
 }
Ejemplo n.º 3
0
 public DeleteBidHandler(IBidRequestService bidRequestService, IUnitOfWork unitOfWork)
 {
     this.bidRequestService = bidRequestService;
     this.unitOfWork        = unitOfWork;
 }