irc-netcore-api/IRaCIS.Core.Application/Service/Common/Interface/IMessageService.cs

13 lines
389 B
C#

using IRaCIS.Application.Contracts;
namespace IRaCIS.Application.Interfaces
{
public interface IMessageService
{
int GetUnReadMessageCount(Guid doctorId);
IResponseOutput DeleteSysMessage(Guid messageId);
IResponseOutput MarkedAsRead(Guid messageId);
PageOutput<SysMessageDTO> GetMessageList(Guid doctorId, int pageSize, int pageIndex);
}
}