12345678910111213141516171819202122232425262728293031323334 |
- using EMIS.ViewModel.Cache;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.ScoreManage
- {
- public class ProjectScoreDetailView
- {
- public Guid ExaminationScoreID { get; set; }
- public int? ExaminationSubjectID { get; set; }
- public string ExaminationSubjectName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.EX_ExaminationSubject.ToString())
- .Where(x => x.Value == ExaminationSubjectID)
- .Select(x => x.Name).FirstOrDefault();
- }
- }
- public decimal? Score { get; set; }
- public Guid? SchoolyearID { get; set; }
- public string SchoolyearCode { get; set; }
- public Guid? ExaminationBatchID { get; set; }
- public string ExaminationBatchName { get; set; }
- public DateTime? CreateTime { get; set; }
- }
- }
|