You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
502 B
26 lines
502 B
// See https://aka.ms/new-console-template for more information
|
|
|
|
using ConsoleApp;
|
|
using ConsoleApp.Menu;
|
|
using Model;
|
|
|
|
using System.Text;
|
|
|
|
Console.WriteLine("Hello, World!\n\n");
|
|
|
|
|
|
// TESTS:
|
|
|
|
Stub stub = new Stub();
|
|
|
|
List<User> users = stub.ConstrucList();
|
|
RecipeCollection recipes = new RecipeCollection("all", stub.LoadRecipes().ToArray());
|
|
|
|
Console.WriteLine(recipes);
|
|
Console.WriteLine("\n---------------------------\n");
|
|
|
|
recipes[]
|
|
|
|
// press any key to quit
|
|
Console.ReadKey();
|