protected void SetCliente(ClienteInfo source)
        {
            if (source == null)
            {
                return;
            }

            Datos_Cliente.DataSource = source;

            _entity.CopyFrom(source);

            //Cargamos los precios especiales del cliente
            if (source.Productos == null)
            {
                source.LoadChilds(typeof(ProductoCliente), false);
            }
        }