TFS_ANTIGUO/AYA.FROPI/AyADAL/CondicionDAL.cs

94 lines
1.8 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AyADAL
{
public class CondicionDAL
{
#region Atributos
//private string _cmpLeftSideName;
//private string _cmpRightSideName;
//private string _cmpLeftSideValue;
//private object _cmpRightSideValue;
//private operadorGeneral _gopOperator;
//private operadorLogico _lopOperator;
//private bool _blnSetLeftParenthesis;
//private bool _blnSetRightParenthesis;
//private bool _blnIsNested;
//private bool _blnIsToJoin;
//private bool _blnRightSideIsDataField;
#endregion
#region Propiedades
public string nombreCampoIzquierdo
{
get;
set;
}
public string nombreCampoDerecho
{
get;
set;
}
public string valorIzquierdo
{
get;
set;
}
public object valorDerecho
{
get;
set;
}
public operadorGeneral operadorGeneral
{
get;
set;
}
public operadorLogico operadorLogico
{
get;// { return _lopOperator; }
set;// { _lopOperator = value; }
}
public bool parentesisInicio
{
get;
set;
}
public bool parentesisFinal
{
get;
set;
}
public bool valorDerechoEsCampo
{
get;
set;
}
#endregion
}
}