Exemplo n.º 1
0
        private void Dispatch()
        {
            MejoresPuntasOfertaEntity ofertaEntity = null;

            while (this.ofertasQueue.TryTake(out ofertaEntity, -1))
            {
                FixDAL.InsertarOferta20Min(ofertaEntity);
            }
        }
Exemplo n.º 2
0
        private void Dispatch()
        {
            PrecioHistoricoEntity precioHistorico = null;

            while (this.preciosHistoricosQueue.TryTake(out precioHistorico, -1))
            {
                FixDAL.InsertarPrecioHistorico(precioHistorico);
                GraphDAL.InsertarPrecio(precioHistorico);
            }
        }