public static EducationFramework Get(int id)
        {
            EducationFramework entity = new EducationFramework();

            entity = EducationFrameworkManager.Get(id);
            return(entity);
        }
        //
        #endregion
        public static EducationFramework GetEducationFrameworkByCtid(string ctid)
        {
            EducationFramework entity = new EducationFramework();

            entity = EducationFrameworkManager.GetByCtid(ctid);
            return(entity);
        }