예제 #1
0
 public static NotaIngresoSalidaDA getInstance()
 {
     if (singletonInstance == null)
     {
         singletonInstance = new NotaIngresoSalidaDA();
     }
     return singletonInstance;
 }
예제 #2
0
 public bool Existe(int nroMov)
 {
     bool existe = new NotaIngresoSalidaDA().buscarPorMovimiento(nroMov);
     return false;
 }