示例#1
0
        public void Add(string clave, string leyenda, bool enabled, object defaultValue, string propertyBinding, DataTable table)
        {
            ReportFilterItem item = new ReportFilterItem(clave, leyenda, enabled, defaultValue, propertyBinding, table);

            List.Add(item);
        }
示例#2
0
        public void Add(string clave, string leyenda)
        {
            ReportFilterItem item = new ReportFilterItem(clave, leyenda);

            List.Add(item);
        }
示例#3
0
 public void Add(ReportFilterItem item)
 {
     List.Add(item);
 }
示例#4
0
        public void Add(string clave, string leyenda, bool enabled, object defaultValue)
        {
            ReportFilterItem item = new ReportFilterItem(clave, leyenda, enabled, defaultValue);

            List.Add(item);
        }