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