104 lines
2 KiB
C#
104 lines
2 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace AyADAL
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// JoinDL Class.
|
|||
|
|
/// Representa una función TL Agregado de una instrucción SQL
|
|||
|
|
/// </summary>
|
|||
|
|
public class JoinDAL
|
|||
|
|
{
|
|||
|
|
#region Atributos
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
#region Constructores
|
|||
|
|
|
|||
|
|
//public JoinDL()
|
|||
|
|
//{
|
|||
|
|
|
|||
|
|
|
|||
|
|
// tablaIzquierda = "";
|
|||
|
|
// clausulaJoin = clausulasJoin.NONE;
|
|||
|
|
// operadorJoin = operadoresJoin.NONE;
|
|||
|
|
// Campos = "";
|
|||
|
|
//}
|
|||
|
|
|
|||
|
|
//public JoinDL(string p_strTablaIzquierda, clausulasJoin p_cljClausulaJoin, operadoresJoin p_opjOperadorJoin,
|
|||
|
|
// bool p_blnEsCrossJoin, string p_strCampos)
|
|||
|
|
//{
|
|||
|
|
// tablaIzquierda = p_strTablaIzquierda;
|
|||
|
|
// clausulaJoin = p_cljClausulaJoin;
|
|||
|
|
// operadorJoin = p_opjOperadorJoin;
|
|||
|
|
// esCrossJoin = p_blnEsCrossJoin;
|
|||
|
|
// Campos = p_strCampos;
|
|||
|
|
//}
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
#region Properties
|
|||
|
|
|
|||
|
|
//public string tablaIzquierda
|
|||
|
|
//{
|
|||
|
|
// get;
|
|||
|
|
// set;
|
|||
|
|
//}
|
|||
|
|
|
|||
|
|
|
|||
|
|
//public string tablaDerecha
|
|||
|
|
//{
|
|||
|
|
// get;
|
|||
|
|
// set;
|
|||
|
|
//}
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
////public clausulasJoin clausulaJoin
|
|||
|
|
////{
|
|||
|
|
//// get;
|
|||
|
|
//// set;
|
|||
|
|
////}
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
//public operadoresJoin operadorJoin
|
|||
|
|
//{
|
|||
|
|
// get;
|
|||
|
|
// set;
|
|||
|
|
//}
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
//public bool esCrossJoin
|
|||
|
|
//{
|
|||
|
|
// get;
|
|||
|
|
// set;
|
|||
|
|
//}
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
//public string Campos
|
|||
|
|
//{
|
|||
|
|
// get;
|
|||
|
|
// set;
|
|||
|
|
//}
|
|||
|
|
|
|||
|
|
|
|||
|
|
//public CondicionDL Condicion
|
|||
|
|
//{
|
|||
|
|
// get;
|
|||
|
|
// set;
|
|||
|
|
//}
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
}
|
|||
|
|
}
|