private void MostrarBoleta()
        {
            Boleta bol = new Boleta();

            dtg_boleta.ItemsSource = bol.ReadAll();
            dtg_boleta.Items.Refresh();
        }
        public void ContarBoletasTest()
        {
            Boleta bol = new Boleta();

            int res = bol.ReadAll().Count();

            Assert.AreEqual(2, res);
        }