Files
Orchard/src/Orchard.Web/Packages/Orchard.Blogs/Services/IBlogService.cs
ErikPorter 24656896da Hooking up create BlogPost and some other service changes to make sure getting posts is scoped to Blog.
--HG--
extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4042128
2009-11-25 01:34:23 +00:00

10 lines
278 B
C#

using System.Collections.Generic;
using Orchard.Blogs.Models;
namespace Orchard.Blogs.Services {
public interface IBlogService : IDependency {
Blog Get(string slug);
IEnumerable<Blog> Get();
Blog Create(CreateBlogParams parameters);
}
}