Ejemplo n.º 1
0
 public CooksController(ICookInteractor cookInteractor,
                        IRecipeInteractor recipeInteractor)
 {
     this.cookInteractor   = cookInteractor;
     this.recipeInteractor = recipeInteractor;
 }
 public RecipesController(IRecipeInteractor recipeInteractor)
 {
     this.recipeInteractor = recipeInteractor;
 }