2024-01-22 17:26:29 +03:30
|
|
|
|
namespace NetinaShop.AdminPanel.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; }
|
|
|
|
|
|
public IUserRestApi UserRestApi { get; }
|
2024-01-28 20:51:50 +03:30
|
|
|
|
public IProductCategoryRestApi ProductCategoryRestApi { get; }
|
|
|
|
|
|
public IProductRestApi ProductRestApi { get; }
|
2024-01-30 02:33:27 +03:30
|
|
|
|
public IBrandRestApi BrandRestApi { get; }
|
|
|
|
|
|
public IFileRestApi FileRestApi { get; }
|
2024-01-30 19:35:44 +03:30
|
|
|
|
public IBlogRestApi BlogRestApi { get; }
|
2024-02-04 16:52:32 +03:30
|
|
|
|
public IDiscountRestApi DiscountRest { get; }
|
2024-01-30 19:35:44 +03:30
|
|
|
|
public IBlogCategoryRestApi BlogCategoryRestApi { get; }
|
2024-01-22 17:26:29 +03:30
|
|
|
|
}
|