123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.Students
- {
- public class StudentExperienceView
- {
-
-
-
- public System.Guid StudentExperienceID { get; set; }
-
-
-
- public Nullable<System.Guid> UserID { get; set; }
-
-
-
- public Nullable<int> StartYear { get; set; }
-
-
-
- public Nullable<int> StartMonth { get; set; }
-
-
-
- public Nullable<int> EndYear { get; set; }
-
-
-
- public Nullable<int> EndMonth { get; set; }
-
-
-
- public string Experience { get; set; }
- }
- }
|