//Student Attendane Data
        #region [Student Attendance Data]

        public DataSet BL_StudentAttendanceData(EWA_StudentAttendance objEWA)
        {
            try
            {
                DL_StudentAttendance objDL = new DL_StudentAttendance();
                DataSet ds = objDL.GetAttendanceData_DL(objEWA);
                return(ds);
            }
            catch (Exception)
            {
                throw;
            }
        }
        //Attendance

        #region [Attendance Region]

        public int SaveAttendance(EWA_StudentAttendance ObjEWA, DataTable StudentClassAttendance)
        {
            try
            {
                DL_StudentAttendance ObjDL = new DL_StudentAttendance();
                int flag = ObjDL.StudentAttendance_DL(ObjEWA, StudentClassAttendance);
                return(flag);
            }
            catch (Exception)
            {
                throw;
            }
        }