Ejemplo n.º 1
0
 public XReportList(int _fieldId, XReportItemState _state, IEnumerable <XReportListItem> _items)
     : base(_fieldId, _state)
 {
     Items = _items.ToList();
 }
Ejemplo n.º 2
0
 public XReportList(int _fieldId, XReportItemState _state, IEnumerable<XReportListItem> _items)
     : base(_fieldId, _state)
 {
     Items = _items.ToList();
 }
Ejemplo n.º 3
0
 public XReportItem(int _fieldId, T _value, XReportItemState _state)
     : base(_fieldId, _state)
 {
     Value = _value;
 }
Ejemplo n.º 4
0
 protected AbstractXReportItem(int _fieldId, XReportItemState _state)
 {
     FieldId = _fieldId;
     State   = _state;
 }
Ejemplo n.º 5
0
 protected AbstractXReportItem(int _fieldId, XReportItemState _state)
 {
     FieldId = _fieldId;
     State = _state;
 }