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

14 lines
546 B
C#
Raw Normal View History

2023-10-20 19:40:23 +03:30
namespace DocuMed.PWA.Services.RestServices;
public interface IRestWrapper
{
public ICrudApiRest<T, TKey> CrudApiRest<T, TKey>(string address) where T : class;
public ICrudDtoApiRest<T, TDto, TKey> CrudDtoApiRest<T, TDto, TKey>(string address) where T : class where TDto : class;
public IAuthRestApi AuthRestApi { get; }
2023-10-22 15:51:11 +03:30
public ISectionRestApi SectionRestApi { get; }
public ICityRestApi CityRestApi { get; }
2023-10-22 15:51:11 +03:30
public IUserRestApi UserRestApi { get; }
public IMedicalHistoryRestApi MedicalHistoryRestApi { get; }
2023-10-20 19:40:23 +03:30
}