7 lines
232 B
C#
7 lines
232 B
C#
|
|
namespace DocuMed.PWA.Services.RestServices;
|
|||
|
|
|
|||
|
|
public interface IHospitalRestApi
|
|||
|
|
{
|
|||
|
|
[Get("/{hospitalId}/section")]
|
|||
|
|
Task<List<SectionSDto>> GetSectionsAsync(Guid hospitalId, [Header("Authorization")] string authorization);
|
|||
|
|
}
|