Files
Orchard/src/Orchard.Web/Modules/Orchard.Blogs/Services/IBlogService.cs
T
Sebastien Ros 49cdb191fd Handling Rsd and Archives
--HG--
branch : autoroute
2012-01-31 14:24:46 -08:00

13 lines
441 B
C#

using System.Collections.Generic;
using Orchard.Blogs.Models;
using Orchard.ContentManagement;
namespace Orchard.Blogs.Services {
public interface IBlogService : IDependency {
BlogPart Get(string path);
ContentItem Get(int id, VersionOptions versionOptions);
IEnumerable<BlogPart> Get();
IEnumerable<BlogPart> Get(VersionOptions versionOptions);
void Delete(ContentItem blog);
}
}