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; }
|
2023-11-18 13:02:16 +03:30
|
|
|
|
public ICityRestApi CityRestApi { get; }
|
2023-10-22 15:51:11 +03:30
|
|
|
|
public IUserRestApi UserRestApi { get; }
|
2023-11-18 13:02:16 +03:30
|
|
|
|
public IMedicalHistoryRestApi MedicalHistoryRestApi { get; }
|
2023-10-20 19:40:23 +03:30
|
|
|
|
}
|