Exemplo n.º 1
0
        public Form1()
        {
            InitializeComponent();

            OrchestraLogic ol = new OrchestraLogic();

            System.Diagnostics.Debug.WriteLine(ol.getAllOrchestra().Count);

            Orchestra or = new Orchestra();

            or.OfficialName = "from entitiy model";
            ol.addOrchestra(or);
        }