Esempio n. 1
0
 public RecipeService(RecipeDA recipeDA, IRecipeIngredientService recipeIngredientService, IRecipeInstructionService recipeInstructionService)
 {
     this.recipeDA = recipeDA;
     this.recipeIngredientService  = recipeIngredientService;
     this.recipeInstructionService = recipeInstructionService;
 }
Esempio n. 2
0
 public RecipeInstructionController(IRecipeInstructionService service)
 {
     _service = service;
 }