TFS_ANTIGUO/SIGPC/AyABL/Usuario/regionBL.cs

43 lines
1.3 KiB
C#
Raw Permalink Normal View History

// Decompiled with JetBrains decompiler
// Type: AyABL.Usuario.regionBL
// 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 AyADAL;
using AyAEL.MANT;
using System;
using System.Collections;
using System.Data;
namespace AyABL.Usuario
{
public class regionBL : AyABL
{
public regionBL()
{
this.objregionEL = new regionEL();
this.NombreTabla = Modulos.t_adm_.ToString() + Tablas.region.ToString();
this.NombreConeccionBD = BASESDEDATOS.SIGDD.ToString();
}
public regionEL objregionEL { get; set; }
public DataSet dsListaRegiones(ArrayList arlCondicionesFiltroBusqueda)
{
try
{
ArrayList arrayList = new ArrayList();
this.cargarCondicionBusqueda(arrayList, arlCondicionesFiltroBusqueda);
if (this.objregionEL.PK != 0)
arrayList.Add((object) this.buscarPorPK(new int?(this.objregionEL.PK), Tablas.region, operadorLogico.NONE));
return this.baseDAL.EjecutarConsulta(this.NombreTabla, this.CamposTabla, this.NombreConeccionBD, arrayList, (string) null, (string) null);
}
catch (Exception ex)
{
throw ex;
}
}
}
}