//Bind Grid of StudentFeesPendingDetails_BL to Pay #region [Student Fees Pending Details] public DataSet BindStudentFeesPendingDetails_BL(EWA_PayFees objEWA) { try { DL_PayFees objDL = new DL_PayFees(); DataSet ds = objDL.BindStudentFeesPending_DL(objEWA); return(ds); } catch (Exception) { throw; } }
public DataSet GetDataStudent(EWA_PayFees objEWA) { try { DL_PayFees objDL = new DL_PayFees(); DataSet ds = objDL.BindGetstudentData(objEWA); return(ds); } catch (Exception) { throw; } }
public DataSet GetDataStudentFeesPaid(EWA_PayFees objEWA) { try { DL_PayFees objDL = new DL_PayFees(); DataSet ds = objDL.BindPreviousFeeRecord(objEWA); return(ds); } catch (Exception) { throw; } }
//Bind Grid of StudentData_BL to confirm Admission #region [Bind Student Data Region] public DataSet BindStudentData_BL(EWA_PayFees objEWA) { try { DL_PayFees objDL = new DL_PayFees(); DataSet ds = objDL.BindStudentData_DL(objEWA); return(ds); } catch (Exception ex) { throw; } }
//To Pay Fees Installments // Save Student Registration #region [Save Student] public int PayFeesInstallmentsAction_BL(EWA_PayFees objEWA, DataTable dtFees, DataTable dtFees_Bus) { try { DL_PayFees objDL = new DL_PayFees(); int flag = objDL.PayFeesInstallmentsAction_DL(objEWA, dtFees, dtFees_Bus); return(flag); } catch (Exception) { throw; } }
private void GetReportData() { crFeesReceipt crt = new crFeesReceipt(); EWA_PayFees objEWA = new EWA_PayFees(); DL_PayFees objDL = new DL_PayFees(); String StudCode = Session["StudentReceiptCode"].ToString(); objEWA.StudentCode = StudCode; DataSet ds = objDL.BindPaidReceiptReport(objEWA); crt.SetDataSource(ds.Tables[0]); crvPrintfeesReceipt.ReportSource = crt; crvPrintfeesReceipt.RefreshReport(); Session.Add("CR_Session", crt); //Add Report into Session CR_Session }