Exemplo n.º 1
0
        public async Task Update(TEntity entity)
        {
            var context = new JwtContext();

            context.Update(entity);
            await context.SaveChangesAsync();
        }
Exemplo n.º 2
0
        public async Task Update(TEntity entity)
        {
            using var context = new JwtContext();
            context.Update(entity);
            await context.SaveChangesAsync();

            // throw new NotImplementedException();
        }