Blog.Core/Blog.Core.IServices/IBlogArticleServices.cs

16 lines
342 B
C#
Raw Normal View History

2018-08-24 14:06:48 +08:00
using Blog.Core.IServices.BASE;
using Blog.Core.Model.Models;
using System;
2018-08-22 12:18:14 +08:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Blog.Core.IServices
{
2018-08-24 14:06:48 +08:00
public interface IBlogArticleServices :IBaseServices<BlogArticle>
2018-08-22 12:18:14 +08:00
{
2018-08-28 13:12:49 +08:00
Task<List<BlogArticle>> getBlogs();
2018-08-22 12:18:14 +08:00
}
}