mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
13 lines
441 B
C#
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);
|
|
}
|
|
} |