44 lines
1.3 KiB
C#
44 lines
1.3 KiB
C#
|
|
// Decompiled with JetBrains decompiler
|
|||
|
|
// Type: AyABL.Tran.estadoCartaBL
|
|||
|
|
// Assembly: AyABL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
|||
|
|
// MVID: 0F2FF6EC-B53C-44DB-9E00-2F932BF80762
|
|||
|
|
// Assembly location: C:\Users\EQUIPO\Downloads\Raiz\Raiz\bin\AyABL.dll
|
|||
|
|
|
|||
|
|
using AyAEL.Tran;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections;
|
|||
|
|
using System.Collections.Specialized;
|
|||
|
|
using System.Configuration;
|
|||
|
|
using System.Data;
|
|||
|
|
|
|||
|
|
namespace AyABL.Tran
|
|||
|
|
{
|
|||
|
|
public class estadoCartaBL : AyABL
|
|||
|
|
{
|
|||
|
|
private static NameValueCollection appSettings = ConfigurationManager.AppSettings;
|
|||
|
|
|
|||
|
|
public estadoCartaBL()
|
|||
|
|
{
|
|||
|
|
this.objestadocartaEL = new estadoCartaEL();
|
|||
|
|
this.NombreTabla = Modulos.t_dis_.ToString() + Tablas.estadocarta.ToString();
|
|||
|
|
this.NombreConeccionBD = BASESDEDATOS.SIGDD.ToString();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public estadoCartaEL objestadocartaEL { get; set; }
|
|||
|
|
|
|||
|
|
public DataSet dsListaTipoCarta(ArrayList arlCondicionesFiltroBusqueda)
|
|||
|
|
{
|
|||
|
|
try
|
|||
|
|
{
|
|||
|
|
ArrayList arrayList = new ArrayList();
|
|||
|
|
this.cargarCondicionBusqueda(arrayList, arlCondicionesFiltroBusqueda);
|
|||
|
|
return this.baseDAL.EjecutarConsulta(this.NombreTabla, this.CamposTabla, this.NombreConeccionBD, arrayList, (string) null, "ORDER BY PKESTADOCARTA ASC");
|
|||
|
|
}
|
|||
|
|
catch (Exception ex)
|
|||
|
|
{
|
|||
|
|
throw ex;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|