public async Task <UsuarioModel> Put(UsuarioModel usuario) { context.Entry(usuario).State = EntityState.Modified; await context.SaveChangesAsync(); return(usuario); }
public async Task <CategoriaModel> Put(CategoriaModel categoria) { context.Entry(categoria).State = EntityState.Modified; await context.SaveChangesAsync(); return(categoria); }
public async Task <Eventos> Put(Eventos evento) { using (EasyTalkContext context = new EasyTalkContext()){ context.Entry(evento).State = EntityState.Modified; await context.SaveChangesAsync(); return(evento); } }