public RecipientsController( IRecipientProfileService recipientProfileService, IRecipientTypeService recipientTypeService, ICityService cityService) { this.recipientProfileService = recipientProfileService; this.recipientTypeService = recipientTypeService; this.cityService = cityService; }
public ProfileController( IRecipientProfileService recipientProfileService, ICityService cityService, IRecipientTypeService recipientTypeService, IFoodCategoryService foodCategoryService, ICurrentUser currentUserProvider) { this.recipientProfileService = recipientProfileService; this.cityService = cityService; this.recipientTypeService = recipientTypeService; this.foodCategoryService = foodCategoryService; this.currentUserProvider = currentUserProvider; }