12 lines
287 B
C#
12 lines
287 B
C#
using DOAN.Model.Content;
|
|
|
|
namespace DOAN.Service.Content.IService
|
|
{
|
|
public interface IArticlePraiseService : IBaseService<ArticlePraise>
|
|
{
|
|
int Praise(ArticlePraise dto);
|
|
int CanclePraise(long userid, long articleId);
|
|
int PlusPraise(long pid);
|
|
}
|
|
}
|