protected void Page_Load(object sender, EventArgs e)
    {
        Product prod = ProductWrapper.getById(request.ProductID);

        this.titleLabel.Text       = request.Title;
        this.descriptionLabel.Text = prod.Description;
        this.startDate.Text        = request.EndDate.ToString();
        this.endDate.Text          = request.EndDate.ToString();

        List <Suscription> subs = SubscriptionWrapper.getByRequestId(request.ID);

        this.subscribers.Text = subs.Count.ToString();
    }