public List<Registro> CustomRead(string query) { List<Registro> registroList = new List<Registro>(); using (SqlConnection con = new SqlConnection(Info.sqlSet())) { SqlCommand cmd = new SqlCommand(query, con); con.Open(); using (SqlDataReader reader = cmd.ExecuteReader()) { // Loop through each record. while (reader.Read()) { Registro tmp = new Registro(); tmp.IdRegistro = (reader.GetValue(0) != DBNull.Value) ? Convert.ToInt32(reader.GetValue(0)) : tmp.IdRegistro; tmp.IdEmpleado = (reader.GetValue(1) != DBNull.Value) ? Convert.ToInt32(reader.GetValue(1)) : tmp.IdEmpleado; tmp.Estado = (reader.GetValue(2) != DBNull.Value) ? Convert.ToBoolean(reader.GetValue(2)) : tmp.Estado; tmp.Fecha = (reader.GetValue(3) != DBNull.Value) ? Convert.ToDateTime(reader.GetValue(3)) : tmp.Fecha; registroList.Add(tmp); } } con.Close(); } return registroList; }
public SingleRegistro(Registro reg) { InitializeComponent(); registro = reg; this.DataContext = registro; btnActualizar.Visibility = Visibility.Visible; btnGuardar.Visibility = Visibility.Collapsed; }
public string Create(Registro obj) { CreateDAC objDAC = new CreateDAC(); if (objDAC.CreateRecord(obj) == true) return "Registro almacenado con éxito."; else return "No se pudo almacenar el regitro."; }
public bool UpdateRecord(Registro obj, int idRegistro) { SqlConnection con = new SqlConnection(Info.sqlSet()); SqlCommand cmd = new SqlCommand("SP_Registro_Update", con); cmd.CommandType = CommandType.StoredProcedure; cmd.Parameters.AddWithValue("@IdRegistro", idRegistro); cmd.Parameters.AddWithValue("@IdEmpleado", obj.IdEmpleado); cmd.Parameters.AddWithValue("@Estado", obj.Estado); cmd.Parameters.AddWithValue("@Fecha", obj.Fecha); con.Open(); if (cmd.ExecuteNonQuery() > 0) { con.Close(); return true; } else { con.Close(); return false; } }
public Registro readOneRegistro(int idRegistro) { Registro registro = new Registro(); using (SqlConnection con = new SqlConnection(Info.sqlSet())) { SqlCommand cmd = new SqlCommand("SP_Registro_SelectRow", con); cmd.CommandType = CommandType.StoredProcedure; cmd.Parameters.AddWithValue("@IdRegistro", idRegistro); con.Open(); using (SqlDataReader reader = cmd.ExecuteReader()) { // Loop through each record. while (reader.Read()) { Registro tmp = new Registro(); tmp.IdRegistro = (reader.GetValue(0) != DBNull.Value) ? Convert.ToInt32(reader.GetValue(0)) : tmp.IdRegistro; tmp.IdEmpleado = (reader.GetValue(1) != DBNull.Value) ? Convert.ToInt32(reader.GetValue(1)) : tmp.IdEmpleado; tmp.Estado = (reader.GetValue(2) != DBNull.Value) ? Convert.ToBoolean(reader.GetValue(2)) : tmp.Estado; tmp.Fecha = (reader.GetValue(3) != DBNull.Value) ? Convert.ToDateTime(reader.GetValue(3)) : tmp.Fecha; registro = tmp; } } con.Close(); } return registro; }
public string Update(Registro obj, int idRegistro) { UpdateDAC objDAC = new UpdateDAC(); if (objDAC.UpdateRecord(obj, idRegistro) == true) return "Registro almacenado con éxito."; else return "No se pudo almacenar el regitro."; }