using Common.Dtos.Common; using Common.Dtos.Specialization; using Common.Dtos.Subject; namespace Api.Services.Interfaces; public interface ISubjectService { Task CreateAsync(CreateSubjectRequest request); Task> GetAllPagedAsync(GetSubjectsRequest request); Task GetAllAsync(); }