Api-PWA/DocuMed.PWA/Services/RestServices/ISectionRestApi.cs

7 lines
189 B
C#
Raw Permalink Normal View History

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>
{
}