public AdministrationSimpleListTemplate(IQueryable queryable)
        {
            Queryable = queryable;

            Criteria = new List<Field>();
            GlobalButtons = new List<IClickable>();
            RecordButtons = new List<IClickable>();
            this.DefaultPageIndex = 1;
        }
 public AdministrationSimpleEditTemplate()
 {
     Fields = new List<Field>();
     Buttons = new List<IClickable>();
 }
Exemple #3
0
 public Table()
 {
     Columns = new List<TableColumn>();
 }
 public ControlCollection()
 {
     Controls = new List<Control>();
 }