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