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

10 lines
276 B
C#
Raw Normal View History

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);
}
}