public List <StudentAttendance> GetAttnsList() { string Context = this.GetType().FullName.ToString(); try { return(StudentAttnsIntegration.GetAttnsList()); } catch (Exception ex) { throw (new Exception(Context, ex)); } }
public int UpdateStudentAttns(StudentAttendance theAttns) { return(StudentAttnsIntegration.UpdateStudentAttns(theAttns)); }
public int InsertStudentAttns(StudentAttendance theAttns) { return(StudentAttnsIntegration.InsertStudentAttns(theAttns)); }