Carrotware.CMS.Core.ContentSnippet.GetHistory C# (CSharp) Метод

GetHistory() публичный Метод

public GetHistory ( ) : List
Результат List
        public List<ContentSnippet> GetHistory()
        {
            using (CarrotCMSDataContext _db = CarrotCMSDataContext.Create()) {
                List<ContentSnippet> _types = (from d in CompiledQueries.cqGetSnippetVersionHistory(_db, this.Root_ContentSnippetID)
                                               select new ContentSnippet(d)).ToList();

                return _types;
            }
        }

Same methods

ContentSnippet::GetHistory ( System.Guid rootSnippetID ) : List