Esempio n. 1
0
        public static void Main(string[] args)
        {
            Console.WriteLine("PharmacyManagment System");

            using (PharmacySystemDbContext context = new PharmacySystemDbContext())

            {
                Engine engine = new Engine(context);
                engine.Run();
            }
        }
 public Engine(PharmacySystemDbContext context)
 {
     this.context = context;
 }