Add project
This commit is contained in:
12
Api/Services/Interfaces/ISubjectService.cs
Normal file
12
Api/Services/Interfaces/ISubjectService.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using Common.Dtos.Common;
|
||||
using Common.Dtos.Specialization;
|
||||
using Common.Dtos.Subject;
|
||||
|
||||
namespace Api.Services.Interfaces;
|
||||
|
||||
public interface ISubjectService
|
||||
{
|
||||
Task<CreateSubjectResponse> CreateAsync(CreateSubjectRequest request);
|
||||
Task<PagedList<SubjectDto>> GetAllPagedAsync(GetSubjectsRequest request);
|
||||
Task<SubjectDto[]> GetAllAsync();
|
||||
}
|
||||
Reference in New Issue
Block a user