private void Manage()
    {
        try
        {
            string result = CVFundBAL.Manage(Request.QueryString, Request.Form);
            var    cvfund = new CVFund {
                CVFundID = Convert.ToInt32(result.Split(',')[0]), Number = Convert.ToInt32(result.Split(',')[1])
            };

            Response.Write(cvfund.ToJSON());
        }
        catch (Exception ex)
        {
            var appError = new ApplicationError
            {
                ErrorMessage = ex.Message,
                ErrorCode    = 999
            };
            Response.Write(appError.ToJSON());
        }
    }
 private void GetEmpEmployee()
 {
     Response.Write(CVFundBAL.GetEmpEmployee(Request.QueryString).ToJSON());
 }
 private void getEmployeeDeductiond()
 {
     Response.Write(CVFundBAL.getEmployeeDeductiond(Request.QueryString).ToJSON());
 }
 private void GetOrigBranch()
 {
     Response.Write(CVFundBAL.GetOrigBranch().ToJSON());
 }
 private void GetTransactionType()
 {
     Response.Write(CVFundBAL.GetCVTransactionType().ToJSON());
 }
 private void GetFixedAssetsType()
 {
     Response.Write(CVFundBAL.GetCVFixedAssetsType().ToJSON());
 }
 private void GetORNumber()
 {
     Response.Write(CVFundBAL.GetCVFORNumber(Request.QueryString).ToJSON());
 }
 private void GetSupplier()
 {
     Response.Write(CVFundBAL.GetCVFSupplier(Request.QueryString).ToJSON());
 }
 private void GetIndividualSupplementary()
 {
     Response.Write(CVFundBAL.GetIndividualSupplementary().ToJSON());
 }
 private void GetCVFPCF()
 {
     Response.Write(CVFundBAL.GetCVFPCF(Request.QueryString).ToJSON());
 }
 private void GetSubsidiary()
 {
     Response.Write(CVFundBAL.GetSubsidiary().ToJSON());
 }
 private void GetEntryLedgerCOA()
 {
     Response.Write(CVFundBAL.GetEntryLedgerCOA(Request.QueryString).ToJSON());
 }
 private void GetEntryLedgerIndividualSubsidiary()
 {
     Response.Write(CVFundBAL.GetEntryLedgerIndividualSubsidiary(Request.QueryString).ToJSON());
 }
 private void GetEntryLedgerSupplementary()
 {
     Response.Write(CVFundBAL.GetEntryLedgerSupplementary(Request.QueryString).ToJSON());
 }
    //private void GetEntryLedgerIndividualSubsidiary()
    //{
    //    Response.Write(CVFundBAL.GetEntryLedgerIndividualSubsidiary(Request.QueryString).ToJSON());
    //}

    private void GetBPREntryLedgerCOA()
    {
        //Response.Write(BillingPurchaseVoucherBAL.GetBPREntryLedgerCOA().ToJSON());
        Response.Write(CVFundBAL.GetEntryLedgerCOA(Request.QueryString).ToJSON());
    }