Exemplo n.º 1
0
 public async Task NewAsync(IEntityConvert <T> entity) => await NewAsync(entity.Convert());
Exemplo n.º 2
0
 public Task <bool> ExistAsync(IEntityConvert <T> entity) => ExistAsync(entity.Convert());
Exemplo n.º 3
0
 public void New(IEntityConvert <T> entity) => New(entity.Convert());
Exemplo n.º 4
0
 public async Task <int> DeleteAsync(IEntityConvert <T> entity) => await DeleteAsync(entity.Convert());
Exemplo n.º 5
0
 public bool Exist(IEntityConvert <T> entity) => Exist(entity.Convert());
Exemplo n.º 6
0
 public int Delete(IEntityConvert <T> entity) => Delete(entity.Convert());
Exemplo n.º 7
0
 public async Task UpdateAsync(IEntityConvert <T> entity) => await UpdateAsync(entity.Convert());
Exemplo n.º 8
0
 public void Update(IEntityConvert <T> entity) => Update(entity.Convert());
Exemplo n.º 9
0
 public async Task <T> NewOrUpdateAsync(IEntityConvert <T> entity) => await NewOrUpdateAsync(entity.Convert());
Exemplo n.º 10
0
 public T NewOrUpdate(IEntityConvert <T> entity) => NewOrUpdate(entity.Convert());