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

17 lines
380 B
C#
Raw Normal View History

2018-08-24 14:06:48 +08:00
using Blog.Core.IServices.BASE;
using Blog.Core.Model.Models;
2018-12-28 14:22:50 +08:00
using Blog.Core.Model.ViewModels;
2018-08-22 12:18:14 +08:00
using System.Collections.Generic;
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
{
2019-03-25 13:32:52 +08:00
Task<List<BlogArticle>> GetBlogs();
2023-04-02 15:16:37 +08:00
Task<BlogViewModels> GetBlogDetails(long id);
2018-08-31 13:20:13 +08:00
2018-08-22 12:18:14 +08:00
}
2018-08-31 13:20:13 +08:00
2018-08-22 12:18:14 +08:00
}