Files
Orchard/src/Orchard.Web/Modules/Orchard.Blogs/Services/IBlogService.cs
T

13 lines
441 B
C#
Raw Normal View History

using System.Collections.Generic;
using Orchard.Blogs.Models;
using Orchard.ContentManagement;
namespace Orchard.Blogs.Services {
public interface IBlogService : IDependency {
2012-01-31 14:24:46 -08:00
BlogPart Get(string path);
ContentItem Get(int id, VersionOptions versionOptions);
2010-07-22 11:08:14 -07:00
IEnumerable<BlogPart> Get();
IEnumerable<BlogPart> Get(VersionOptions versionOptions);
2010-11-15 17:57:02 -08:00
void Delete(ContentItem blog);
}
}