Esempio n. 1
0
        //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;
            }
        }
Esempio n. 2
0
 public DataSet GetDataStudent(EWA_PayFees objEWA)
 {
     try
     {
         DL_PayFees objDL = new DL_PayFees();
         DataSet    ds    = objDL.BindGetstudentData(objEWA);
         return(ds);
     }
     catch (Exception)
     {
         throw;
     }
 }
Esempio n. 3
0
 public DataSet GetDataStudentFeesPaid(EWA_PayFees objEWA)
 {
     try
     {
         DL_PayFees objDL = new DL_PayFees();
         DataSet    ds    = objDL.BindPreviousFeeRecord(objEWA);
         return(ds);
     }
     catch (Exception)
     {
         throw;
     }
 }
Esempio n. 4
0
        //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;
            }
        }
Esempio n. 5
0
        //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;
            }
        }
Esempio n. 6
0
        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
        }