10 lines
265 B
C#
10 lines
265 B
C#
using SPMS.Application.DTOs.Notice;
|
|
|
|
namespace SPMS.Application.Interfaces;
|
|
|
|
public interface INoticeService
|
|
{
|
|
Task<NoticeListResponseDto> GetListAsync(NoticeListRequestDto request);
|
|
Task<NoticeInfoResponseDto> GetInfoAsync(NoticeInfoRequestDto request);
|
|
}
|