public int ActualizarTutor(CDTutores entity) { using (var connection = GetConnection()) { try { connection.Open(); using (var command = new SqlCommand()) { command.Connection = connection; command.CommandText = "spTutoresUpdate"; command.CommandType = CommandType.StoredProcedure; command.Parameters.AddWithValue("@IdTutor", entity.IdTutor); command.Parameters.AddWithValue("@Nombre", entity.Nombre); command.Parameters.AddWithValue("@Cedula", entity.Cedula); command.Parameters.AddWithValue("@Direccion", entity.Direccion); command.Parameters.AddWithValue("@Telefono", entity.Telefono); command.Parameters.AddWithValue("@CentroTrabajo", entity.CentroTrabajo); command.Parameters.Add("@Mensaje", SqlDbType.VarChar, 50); command.Parameters["@Mensaje"].Direction = ParameterDirection.Output; int result = command.ExecuteNonQuery(); if (result != 1) { string mensaje = command.Parameters["@Mensaje"].Value.ToString(); System.Windows.Forms.MessageBox.Show("" + mensaje, "Error", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Error); } return(result); } } catch (Exception ex) { throw ex; } } }
public int EliminarTutor(int idtutor) { try { CDTutores entity = new CDTutores() { IdTutor = idtutor }; int result = _CDRTutores.EliminarTutor(entity); return(result); } catch (Exception ex) { throw ex; } }
public int InsertTutor(string nombre, string cedula, string direccion, string telefono, string centroTrabajo) { try { CDTutores entity = new CDTutores() { Nombre = nombre, Cedula = cedula, Direccion = direccion, Telefono = telefono, CentroTrabajo = centroTrabajo }; int result = _CDRTutores.InsertarTutor(entity); return(result); } catch (Exception ex) { throw ex; } }
public int ActualizarTutor(int idtutor, string nombre, string cedula, string direccion, string telefono, string centroTrabajo) { try { CDTutores entity = new CDTutores() { IdTutor = idtutor, Nombre = nombre, Cedula = cedula, Direccion = direccion, Telefono = telefono, CentroTrabajo = centroTrabajo }; int result = _CDRTutores.ActualizarTutor(entity); return(result); } catch (Exception ex) { throw ex; } }