I have a query is would like to know if it returned data.
//classe aplicação-
private List<tb_cabecalho> TransformaReaderEmListaObjetos(SqlDataReader reader)
{
var retornando = new List<tb_cabecalho>();
while (reader.Read())
{
tb_cabecalho tabela = new tb_cabecalho()
{
campofixo = "H",
cnpjdoecomerce = "61549259000180",
dataincial = reader["DataInicial"] == DBNull.Value ? DateTime.MinValue : Convert.ToDateTime(reader["DataInicial"]),
datafinal = reader["DataFinal"] == DBNull.Value ? DateTime.MinValue : Convert.ToDateTime(reader["DataFinal"])
};
retornando.Add(tabela);
}
reader.Close();
return retornando;
}
/// <summary>
/// Aqui estou retornando os dados do cabecalho
/// </summary>
var tbuscar = new cabecalhoAplicacao();
var retorno = tbuscar.DadosDoCabecalho();