Ejemplo n.º 1
0
        public async Task <int> Incluir(T entidade)
        {
            await _context.IniciarTransaction();

            var obj = await _dbSet.AddAsync(entidade);

            await _context.SalvarMudancas();

            return(obj.Entity.Id);
        }
Ejemplo n.º 2
0
 public async Task SalvarMudancas(bool commit = true)
 {
     await _context.SalvarMudancas(commit);
 }