Ejemplo n.º 1
0
    private void Manage()
    {
        var billingtype = new BillingType {
            BillingTypeID = Convert.ToInt32(BillingTypeBAL.Manage(Request.QueryString))
        };

        Response.Write(billingtype.ToJSON());
    }
Ejemplo n.º 2
0
 private void GetBillingType()
 {
     Response.Write(BillingTypeBAL.GetBillingType(Request.QueryString).ToJSON());
 }