示例#1
0
 public OfferProjectHandler(IUnitOfWork unitOfWork,
                            IMapper mapper, IOfferProjectService offerProjectService, UserManager <ApplicationUser> userManager)
 {
     this.unitOfWork          = unitOfWork;
     this.mapper              = mapper;
     this.offerProjectService = offerProjectService;
     this.userManager         = userManager;
 }
 public OfferedProjectListHandler(UserManager <ApplicationUser> userManager,
                                  IOfferProjectService offerProjectService, ICountryService countryService, IUnitOfWork unitOfWork)
 {
     this.userManager         = userManager;
     this.offerProjectService = offerProjectService;
     this.countryService      = countryService;
     this.unitOfWork          = unitOfWork;
 }