コード例 #1
0
        public IEnumerable <ISnapshot> Fetch(bool includeHtml = false)
        {
            var db = new TooksCmsDAL();

            if (includeHtml)
            {
                return(db.Snapshots);
            }

            return(db.GetSnapshotLite());
        }