//GET /api/productosmix
        public IEnumerable <ProductoMixDTO> GetProductosMix()
        {
            //var productosMix = productoBL.GetAllProductosSegunFlagMix();
            var productosMix = productoBL.GetAllProductoMix();

            return(productosMix.Select(Mapper.Map <ProductoMix, ProductoMixDTO>));
        }