Пример #1
0
        public void CleanBD()
        {
            Contexte context = new Contexte();

            foreach (Plat plat in context.Plats)
            {
                context.Remove(plat);
            }
            context.SaveChanges();
        }
Пример #2
0
        public void CreePlat(int choix)
        {
            int  valeur = ((int)(-1 * 4 * Math.Log(1 - FournisseurDeRandom())) + 1);
            Plat p      = new Plat();

            if (choix > PalierViande && choix < PalierLegume)
            {
                p.TypePlat = "Carnivore";
            }
            else if (choix == PalierViande)
            {
                p.TypePlat = "Sucrerie";
            }
            else
            {
                p.TypePlat = "Végéterien";
            }

            p.NbrBouchee = valeur;
            contexte.Plats.Add(p);
            contexte.SaveChanges();
        }