Blog.Core/Blog.Core.IServices/IBlogArticleServices.cs
anjoy8 6819c3a899 remove all no need using
去掉不必要的引用
2020-06-04 22:58:53 +08:00

17 lines
379 B
C#

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