Exemplo n.º 1
0
        static void Main(string[] args)
        {
            DBManageWithCommand dBManageWithCommand = new DBManageWithCommand();

            Menu menu = new Menu(dBManageWithCommand, dBManageWithCommand.dataBaseContext);

            menu.displayMenu();
        }
Exemplo n.º 2
0
 public Menu(DBManageWithCommand dBManageWithCommand, DataBaseContext dataBaseContext)
 {
     this.dBManageWithCommand = dBManageWithCommand;
     this.dataBaseContext     = dataBaseContext;
 }