Example #1
0
        public List <StudentAttendance> GetAttnsList()
        {
            string Context = this.GetType().FullName.ToString();

            try
            {
                return(StudentAttnsIntegration.GetAttnsList());
            }
            catch (Exception ex)
            {
                throw (new Exception(Context, ex));
            }
        }
Example #2
0
 public int UpdateStudentAttns(StudentAttendance theAttns)
 {
     return(StudentAttnsIntegration.UpdateStudentAttns(theAttns));
 }
Example #3
0
 public int InsertStudentAttns(StudentAttendance theAttns)
 {
     return(StudentAttnsIntegration.InsertStudentAttns(theAttns));
 }