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