Beispiel #1
0
 public System.Data.DataTable Listar(string condicion, params object[] args)
 {
     try
     {
         DTurno_ = new Datos.Turno();
         return(DTurno_.Listar(condicion, args));
     }
     catch (System.Exception ex)
     {
         throw new System.Exception("Turno: Error al listar. \n" + ex.Message);
     }
 }
Beispiel #2
0
 public System.Data.DataTable Listar( string condicion, params object[] args )
 {
     try
     {
         DTurno_ = new Datos.Turno ();
         return DTurno_.Listar ( condicion, args );
     }
     catch ( System.Exception ex )
     {
         throw new System.Exception ( "Turno: Error al listar. \n" + ex.Message );
     }
 }
Beispiel #3
0
 public System.Data.DataTable Listar()
 {
     DTurno_ = new Datos.Turno ();
     return DTurno_.Listar ();
 }
Beispiel #4
0
 public System.Data.DataTable Listar()
 {
     DTurno_ = new Datos.Turno();
     return(DTurno_.Listar());
 }