public static void AgregarUsuario(Usuari u) { using (SqlConnection con = new SqlConnection(SqlServer.CADENA_CONEXION)) { con.Open(); string textoCmd = "INSERT INTO Usuario (NroDocumento, Nombre, Apellido, Departamento, Cargo,FechaIngreso, Correo)VALUES (@NroDocumento, @Nombre, @Apellido, @Departamento, @Cargo, @FechaIngreso, @Correo)"; SqlCommand cmd = new SqlCommand(textoCmd, con); cmd = u.ObtenerParametros(cmd); cmd.ExecuteNonQuery(); } }
public static void EditarUsuario(int index, Usuari u) { using (SqlConnection con = new SqlConnection(SqlServer.CADENA_CONEXION)) { con.Open(); string textoCMD = "UPDATE Usuario SET NroDocumento=@NroDocumento, Nombre =@Nombre, Apellido=@Apellido, Departamento=@Departamento, Cargo=@Cargo,FechaIngreso=@FechaIngreso, Correo=@Correo where Id = @Id"; SqlCommand cmd = new SqlCommand(textoCMD, con); cmd = u.ObtenerParametros(cmd, true); cmd.ExecuteNonQuery(); } }