public static void Inicializador(String filename)
 {
     if (filename == null)
     {
         throw new ArgumentException();
     }
     if (instance != null)
     {
         instance.conec.Close();
     }
     instance = new VentasViewModel(filename);
 }
 public static void Inicializador(String filename) //CAMBIAR NOMBRE DEL FILENAME PARA RECIBIR LA VISTA DE LA APP
 {
     if (filename == null)
     {
         throw new ArgumentException();
     }
     if (instance != null)
     {
         instance.conec.Close();
     }
     instance = new VentasViewModel(filename);
 }