Exemplo n.º 1
0
 public RecipeService(IIngredientService ingredientService, IRecipeDataProvider recipeDataProvider, IRecipeIngredientDataProvider recipeIngredientData)
 {
     IngredientService = ingredientService;
     RecipeDataProvider = recipeDataProvider;
     RecipeIngredientDataProvider = recipeIngredientData;
 }
Exemplo n.º 2
0
 public RecipeIngredientService(IIngredientService ingredientService, IRecipeIngredientDataProvider dataProvider)
 {
     IngredientService = ingredientService;
     DataProvider = dataProvider;
 }