Exemple #1
0
        private void Bt1_Click(object sender, RoutedEventArgs e)
        {
            VentanaPrestamosImpl ventaPrestamos = VentanaPrestamosImpl.GetInstance();

            ventaPrestamos.Show();
            this.Hide();
        }
Exemple #2
0
 public static VentanaPrestamosImpl GetInstance()
 {
     if (instance == null)
     {
         instance = new VentanaPrestamosImpl();
     }
     Debug.WriteLine("<<< INSTANCIA");
     return(instance);
 }