/// <summary> /// Excluir Genero. /// </summary> /// <param name="idGenero">Valor a ser Excluido.</param> public void Excluir(int idGenero) { using (SqlConnection objConexao = new SqlConnection(ContextGenero.strConexao)) { using (SqlCommand objCommand = new SqlCommand()) { objConexao.Open(); generoDAO.Excluir(objCommand, objConexao, idGenero); objConexao.Close(); } } }
/// <summary> /// Excluir Genero. /// </summary> /// <param name="idGenero">Valor a ser Excluido.</param> public void Excluir(int idGenero) { var genero = _generoDAO.BuscarPorId(idGenero); _generoDAO.Excluir(genero); }