2009-11-20 23:31:49 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Orchard.Blogs.Models;
|
|
|
|
|
|
|
|
|
|
namespace Orchard.Blogs.Services {
|
|
|
|
|
public interface IBlogService : IDependency {
|
2010-07-22 11:08:14 -07:00
|
|
|
BlogPart Get(string slug);
|
|
|
|
|
IEnumerable<BlogPart> Get();
|
|
|
|
|
void Delete(BlogPart blogPart);
|
2009-11-20 23:31:49 +00:00
|
|
|
}
|
|
|
|
|
}
|