Blog.Core/Blog.Core.IServices/IBlogArticleServices.cs
2019-03-25 13:32:52 +08:00

20 lines
431 B
C#

using Blog.Core.IServices.BASE;
using Blog.Core.Model.Models;
using Blog.Core.Model.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Blog.Core.IServices
{
public interface IBlogArticleServices :IBaseServices<BlogArticle>
{
Task<List<BlogArticle>> GetBlogs();
Task<BlogViewModels> GetBlogDetails(int id);
}
}