public ActionResult Eventu_UsuarioCreate(Evento_Usuario eU) { using (Evento_UsuarioDAL dal = new Evento_UsuarioDAL()) { dal.Create(eU); return(RedirectToAction("Evento_UsuarioIndex")); } }
public bool Update(Evento_Usuario entity) { try { context.Entry(entity).State = EntityState.Modified; } catch (System.Exception) { return(false); } return(true); }
public bool save(Evento_Usuario entity) { try { context.Set <Evento_Usuario>().Add(entity); } catch (System.Exception) { return(false); } return(true); }
public bool Delete(int id) { var result = new Evento_Usuario(); try { result = context.Evento_Usuario.Single(x => x.IDEvento_Usuario == id); context.Evento_Usuario.Remove(result); } catch (System.Exception) { return(false); } return(true); }
public void Create(Evento_Usuario eU) { SqlCommand cmd = new SqlCommand(); cmd.Connection = connection; ///<Insert> /// /// INSERT INT eventos_usuarios VALUES (@evento_id, @usuario_id, /// @status_id, @certificado) /// /// </Insert> cmd.CommandText = @"execute eventoUsuarioAdd @evento_id, @usuario_id, @status_id, @certificado"; cmd.Parameters.AddWithValue("@evento_id", eU.Evento_id); cmd.Parameters.AddWithValue("@usuario_id", eU.Usuario_id); cmd.Parameters.AddWithValue("@status_id", eU.Status_id); cmd.Parameters.AddWithValue("@certificado", eU.Certificado); cmd.ExecuteNonQuery(); }
public IHttpActionResult PostEvento_Usuario(Evento_Usuario evento_Usuario) { return(Ok(_eventoUsuarioService.save(evento_Usuario))); }
public bool Update(Evento_Usuario entity) { return(repository.Update(entity)); }
public bool save(Evento_Usuario entity) { return(repository.save(entity)); }