Ejemplo n.º 1
0
        private void Bt1_Click(object sender, RoutedEventArgs e)
        {
            PrestamosImpl prestamos = PrestamosImpl.GetInstance();

            prestamos.Show();
            this.Hide();
        }
Ejemplo n.º 2
0
        public static PrestamosImpl GetInstance()
        {
            if (instance == null)
            {
                instance = new PrestamosImpl();
            }

            return(instance);
        }
Ejemplo n.º 3
0
        private void Ocultar()
        {
            Debug.WriteLine("<<< OCULTAR");
            PrestamosImpl prestamos = PrestamosImpl.GetInstance();

            prestamos.MostrarTabla();
            prestamos.Show();
            this.Hide();
        }