Beispiel #1
0
        private void AddGridFormaPagto()
        {
            RowRelatorio.Clear();
            RowRelatorio.Add(new RowsFiltro("DTEMISSAO", "System.DateTime", ">=", Util.ConverStringDateSearch(mkDtInicial.Text)));
            RowRelatorio.Add(new RowsFiltro("DTEMISSAO", "System.DateTime", "<=", Util.ConverStringDateSearch(mkdatafinal.Text)));


            LIS_PEDIDOOTICA2Provider LIS_PEDIDO2P = new LIS_PEDIDOOTICA2Provider();

            LIS_PEDIDO2CFormPagtoColl.Clear();
            LIS_PEDIDO2CFormPagtoColl = LIS_PEDIDO2P.ReadCollectionByParameter(RowRelatorio, "DTEMISSAO DESC");

            LIS_PEDIDOOTICA2Entity LIS_PEDIDO2Ty = new LIS_PEDIDOOTICA2Entity();

            LIS_PEDIDO2Ty.TOTALPEDIDO = SumTotalPesquisaFPagto("TOTALPEDIDO");

            LIS_PEDIDO2CFormPagtoColl.Add(LIS_PEDIDO2Ty);

            dtgFormPagto.AutoGenerateColumns = false;
            dtgFormPagto.DataSource          = LIS_PEDIDO2CFormPagtoColl;
        }
Beispiel #2
0
        private static LIS_PEDIDOOTICA2Collection ExecuteReader(ref LIS_PEDIDOOTICA2Collection collection, ref FbDataReader dataReader, FbCommand dbCommand)
        {
            using (dataReader = dbCommand.ExecuteReader())
            {
                collection = new LIS_PEDIDOOTICA2Collection();

                if (dataReader.HasRows)
                {
                    while (dataReader.Read())
                    {
                        collection.Add(FillEntityObject(ref dataReader));
                    }
                }

                if (!(dataReader.IsClosed))
                {
                    dataReader.Close();
                }
                dataReader.Dispose();
            }

            return(collection);
        }