/// <summary>
        /// StudentViewModel Constructor
        /// </summary>
        public StudentViewModel()
        {
            studentBusinessLogic = new StudentBusinessLogic();

            this.Sections         = studentBusinessLogic.GetAllSections();
            this.Religions        = studentBusinessLogic.GetAllStudentReligion();
            this.Languages        = studentBusinessLogic.GetAllLanguages();
            this.StudentCategorys = studentBusinessLogic.GetAllStudentCategory();
        }