Exemplo n.º 1
0
 /// <summary>
 /// Gets the list model for all post templates.
 /// </summary>
 public static PostListModel Get()
 {
     PostListModel m = new PostListModel() ;
     m.Templates = PostTemplate.GetFields("posttemplate_id,posttemplate_name,posttemplate_created,posttemplate_updated",
         new Params() { OrderBy = "posttemplate_name" }) ;
     return m ;
 }
Exemplo n.º 2
0
        /// <summary>
        /// Gets the list model for all post templates.
        /// </summary>
        public static PostListModel Get()
        {
            PostListModel m = new PostListModel();

            m.Templates = PostTemplate.GetFields("posttemplate_id,posttemplate_name,posttemplate_type,posttemplate_created,posttemplate_updated",
                                                 new Params()
            {
                OrderBy = "posttemplate_name"
            });
            return(m);
        }