2024-09-28 12:34:36 +03:30
|
|
|
|
using Section = DocuMed.Domain.Entities.Hospitals.Section;
|
|
|
|
|
|
|
|
|
|
|
|
namespace DocuMed.PWA.Services.RestServices;
|
2023-10-22 15:51:11 +03:30
|
|
|
|
|
|
|
|
|
|
public interface ISectionRestApi : ICrudDtoApiRest<Section,SectionSDto,Guid>
|
|
|
|
|
|
{
|
|
|
|
|
|
[Get("/university/{universityId}")]
|
|
|
|
|
|
Task<List<SectionSDto>> GetByUniversityAsync(Guid universityId, [Header("Authorization")] string authorization);
|
|
|
|
|
|
}
|