private void Manage()
    {
        string result = BillingPurchasePaymentBAL.Manage(Request.QueryString, Request.Form);

        var billingPurchaseVoucher = new BillingPurchasePayment {
            BPPID = Convert.ToInt32(result.Split(',')[0]),
            BPPNo = Convert.ToInt32(result.Split(',')[1])
        };

        Response.Write(billingPurchaseVoucher.ToJSON());
    }
 private void GetSI()
 {
     Response.Write(BillingPurchasePaymentBAL.GetSI(Request.QueryString).ToJSON());
 }
 private void GetBookType()
 {
     Response.Write(BillingPurchasePaymentBAL.GetBookType().ToJSON());
 }
 private void GetBPPEntryLedger()
 {
     Response.Write(BillingPurchasePaymentBAL.GetBPPEntryLedger(Request.QueryString).ToJSON());
 }
 private void GetBPPEntryLedgerCOA()
 {
     Response.Write(BillingPurchasePaymentBAL.GetBPPEntryLedgerCOA().ToJSON());
 }
 private void GetReceivingHeader()
 {
     Response.Write(BillingPurchasePaymentBAL.GetReceivingHeader(Request.QueryString).ToJSON());
 }