Example #1
0
 public RateModel(IUserRecipeService recipeService)
 {
     this.recipeService = recipeService;
 }
 public DetailsModel(IUserRecipeService recipeService)
 {
     this.recipeService = recipeService;
 }
 public UserRecipeController(IUserRecipeService userRecipeService)
 {
     _userRecipeService = userRecipeService;
 }
Example #4
0
 public SearchModel(IUserRecipeService recipeService)
 {
     this.recipeService = recipeService;
 }
Example #5
0
 public CreateModel(IUserNotesService notesService, IUserRecipeService recipeService)
 {
     this.notesService  = notesService;
     this.recipeService = recipeService;
 }
Example #6
0
 public AllModel(IUserReviewService reviewService, IUserRecipeService recipeService)
 {
     this.reviewService = reviewService;
     this.recipeService = recipeService;
 }
Example #7
0
 public FavouritesModel(IUserRecipeService recipeService)
 {
     this.recipeService = recipeService;
 }
Example #8
0
 public RecipesController(IUserRecipeService recipeService)
 {
     this.recipeService = recipeService;
 }
Example #9
0
 public IndexModel(IUserRecipeService recipeService)
 {
     this.recipeService = recipeService;
 }