Untitled

 avatar
unknown
plain_text
2 years ago
398 B
9
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...