namespace DocuMed.PWA.Services.RestServices; public interface IRestWrapper { public ICrudApiRest CrudApiRest(string address) where T : class; public ICrudDtoApiRest CrudDtoApiRest(string address) where T : class where TDto : class; public IAuthRestApi AuthRestApi { get; } }