Ejemplo n.º 1
0
    private void Apply()
    {
        Refund refund = new Refund();
        BLLRefund bllRefund = new BLLRefund(CurrentMember,Request["orderid"]);

        bllRefund.ApplyRefund();
    }
Ejemplo n.º 2
0
 protected void btnRefurb_Click(object sender, EventArgs e)
 {
     string html = new BLLRefund(CurrentMember, order.Id.ToString()).ApplyRefund();
     Response.Write(html);
 }