public List <StudentSection> GetSectionList(string searchText)
        {
            string Context = this.GetType().FullName.ToString();

            try
            {
                return(StudentSectionIntegration.GetSectionList(searchText));
            }
            catch (Exception ex)
            {
                throw (new Exception(Context, ex));
            }
        }
        //public List<Streams> GetStreamList()
        //{
        //    return StreamIntegration.GetStreamList();
        //}

        public List <StudentSection> GetStudentListBySectionID(int SectionID)
        {
            string Context = this.GetType().FullName.ToString();

            try
            {
                return(StudentSectionIntegration.GetStudentListBySectionID(SectionID));
            }
            catch (Exception ex)
            {
                throw (new Exception(Context, ex));
            }
        }
 public int UpdateStudentSection(StudentSection theSection)
 {
     return(StudentSectionIntegration.UpdateStudentSection(theSection));
 }
 public int InsertStudentSection(StudentSection theSection)
 {
     return(StudentSectionIntegration.InsertStudentSection(theSection));
 }