Esempio n. 1
0
        public JarbooPageViewModel(JarbooPage page)
            : this()
        {
            this.Slug        = page.Slug;
            this.Title       = page.Title;
            this.Content     = page.Content;
            this.DateCreated = page.DateCreated;

            this.SeoTitle           = page.DateCreated;
            this.SeoMetaDescription = page.SeoMetaDescription;

            this.TotalCount = page.TotalCount;
            this.Pages      = page.Pages;
        }
Esempio n. 2
0
 public void Delete(JarbooPage page)
 {
     throw new NotImplementedException();
 }
Esempio n. 3
0
 public JarbooPage Update(JarbooPage page)
 {
     throw new NotImplementedException();
 }