using SPMS.Application.DTOs.Notice; namespace SPMS.Application.Interfaces; public interface INoticeService { Task GetListAsync(string serviceCode, NoticeListRequestDto request); Task GetInfoAsync(string serviceCode, NoticeInfoRequestDto request); }