using SPMS.Application.DTOs.Service; namespace SPMS.Application.Interfaces; public interface IServiceManagementService { Task GetListAsync(ServiceListRequestDto request); Task GetByServiceCodeAsync(string serviceCode); Task ChangeStatusAsync(string serviceCode, ChangeServiceStatusRequestDto request); }