45 lines
800 B
C#
45 lines
800 B
C#
|
|
using System;
|
|||
|
|
using System.Collections;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Data;
|
|||
|
|
using System.Data.Common;
|
|||
|
|
|
|||
|
|
using AyABL.AUT;
|
|||
|
|
using AyAEL.SEG;
|
|||
|
|
using AyADAL;
|
|||
|
|
|
|||
|
|
|
|||
|
|
namespace AyABL.APL
|
|||
|
|
{
|
|||
|
|
public class ComandoBL : AyABL
|
|||
|
|
{
|
|||
|
|
#region Constructores
|
|||
|
|
|
|||
|
|
public ComandoBL()
|
|||
|
|
{
|
|||
|
|
objComandoEL = new ComandoEL();
|
|||
|
|
this.NombreTabla = Modulos.t_seg_.ToString() + Tablas.comando.ToString();
|
|||
|
|
this.NombreConeccionBD = BASESDEDATOS.FOPI.ToString();
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
#region Atributos
|
|||
|
|
|
|||
|
|
public ComandoEL objComandoEL { get; set; }
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
#region Metodos
|
|||
|
|
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
#region Condiciones de Busqueda
|
|||
|
|
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
}
|
|||
|
|
}
|