Example #1
0
 public HomeController()
 {
     if (homeController == null)
     {
         FoundDishes    = new List <Dish>();
         db             = new KitchenBookContext();
         toSearch       = new List <Ingridient>();
         items          = db.getIngridients();
         homeController = this;
     }
 }