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