18 lines
400 B
C#
18 lines
400 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Domain.Impl
|
|
{
|
|
public interface ICsvrMessageDomain : ITransientDependency
|
|
{
|
|
Task<bool> PushNewsMsg(PushNewsMsgDto dto);
|
|
|
|
Task<CsvrMessage> GetNotificationByEid(int eid, string msgcode);
|
|
|
|
Task<int> GetMessageCount(int eid);
|
|
}
|
|
}
|