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