Example #1
0
 public HomeController(
     IDonorProfileService donorProfileService,
     IFoodDonationService foodDonationService)
 {
     this.donorProfileService = donorProfileService;
     this.foodDonationService = foodDonationService;
 }
 public ProfileController(
     IDonorProfileService donorProfileService,
     ICityService cityService,
     ICurrentUser currentUserProvider)
 {
     this.donorProfileService = donorProfileService;
     this.cityService         = cityService;
     this.currentUserProvider = currentUserProvider;
 }
Example #3
0
 public FoodRequestsController(
     IFoodRequestService foodRequestService,
     IDonorProfileService donorProfileService,
     ICurrentUser currentUserProvider,
     IFoodRequestCommentService foodRequestCommentService)
 {
     this.foodRequestService        = foodRequestService;
     this.donorProfileService       = donorProfileService;
     this.currentUserProvider       = currentUserProvider;
     this.foodRequestCommentService = foodRequestCommentService;
 }
Example #4
0
 public FoodDonationsController(
     IFoodDonationService foodDonationService,
     IFoodCategoryService foodCategoryService,
     IDonorProfileService donorProfileService,
     ICurrentUser currentUserProvider
     )
 {
     this.foodDonationService = foodDonationService;
     this.foodCategoryService = foodCategoryService;
     this.donorProfileService = donorProfileService;
     this.currentUserProvider = currentUserProvider;
 }
 public DonorsController(
     IDonorProfileService donorProfileService)
 {
     this.donorProfileService = donorProfileService;
 }
 public AccountController(IDonorProfileService donorProfileService)
 {
     this.donorProfileService = donorProfileService;
 }
Example #7
0
 public DonorsController(IDonorProfileService donorProfileService, ICityService cityService)
 {
     this.donorProfileService = donorProfileService;
     this.cityService         = cityService;
 }