using System; using System.Collections.Generic; using System.Linq; using System.Text; using EMIS.ViewModel.CacheManage; namespace EMIS.ViewModel.ScoreManage { public class ExamsCategorySettingView { /// /// ExamsCategoryID /// public Nullable ExamsCategoryID { get; set; } public string ExamsCategoryDesc { get { return IdNameExt.GetDictionaryItem(DictionaryItem.CF_ExamsCategory.ToString()) .Where(x => x.Value == ExamsCategoryID) .Select(x => x.Name).FirstOrDefault(); } } /// /// ExamsCategorySettingID /// public System.Guid? ExamsCategorySettingID { get; set; } /// /// IsReadHistory /// public bool IsReadHistory { get; set; } } }