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>();
 }
예제 #3
0
파일: Table.cs 프로젝트: yangwen27/moonlit
 public Table()
 {
     Columns = new List<TableColumn>();
 }
예제 #4
0
 public ControlCollection()
 {
     Controls = new List<Control>();
 }