Untitled
unknown
plain_text
3 years ago
398 B
11
Indexable
namespace FlFi.Common.Services
{
public interface IAdminService
{
Task CreateAsync<TDto>(string uri, TDto dto);
Task DeleteAsync<TDto>(string uri);
Task DeleteReferenceAsync<TDto>(string uri, TDto dto);
Task EditAsync<TDto>(string uri, TDto dto);
Task<List<TDto>> GetAsync<TDto>(string uri);
Task<TDto> SingleAsync<TDto>(string uri);
}
}Editor is loading...