Exemplo n.º 1
0
 public ShowRecipeByName(IRecipeManager recipeManager, IInputProvider inputProvider, IModelDrawer <Recipe> recipeDrawer) :
     base(title: "Show recipe by name")
 {
     this.inputProvider = inputProvider;
     this.recipeDrawer  = recipeDrawer;
     this.recipeManager = recipeManager;
 }
Exemplo n.º 2
0
 public RecipeModelDrawer(IModelDrawer <Component> componentDrawer)
 {
     this.componentDrawer = componentDrawer;
 }
Exemplo n.º 3
0
 public ShowAllRecipesOption(IRecipeManager recipeManager, IModelDrawer <Recipe> recipeDrawer) :
     base(title: "Show all recipes")
 {
     this.recipeDrawer  = recipeDrawer;
     this.recipeManager = recipeManager;
 }