hytos / ID2.Manager / ID2.Manager.Common / Informations.cs @ 709c1971
이력 | 보기 | 이력해설 | 다운로드 (1.64 KB)
1 | 35d01ef5 | yoush97 | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | using System.Threading.Tasks; |
||
6 | |||
7 | using System.ComponentModel; |
||
8 | |||
9 | using ID2.Manager.Data; |
||
10 | using ID2.Manager.Data.Models; |
||
11 | |||
12 | namespace ID2.Manager.Common |
||
13 | { |
||
14 | public class Informations |
||
15 | { |
||
16 | private static readonly Lazy<Informations> lazy = new Lazy<Informations>(() => new Informations()); |
||
17 | |||
18 | public static Informations Instance |
||
19 | { |
||
20 | get { return lazy.Value; } |
||
21 | } |
||
22 | |||
23 | private Informations() |
||
24 | { |
||
25 | |||
26 | } |
||
27 | |||
28 | public UserInfo ActiveUser { get; set; } |
||
29 | c95d3bca | yoush97 | |
30 | 709c1971 | yoush97 | public List<UserInfo> UserList { get; set; } = new List<UserInfo>(); |
31 | |||
32 | c95d3bca | yoush97 | private readonly List<string> _JobLevel = new List<string>() { "1", "2", "3", "4", "5" }; |
33 | public List<string> JobLevel |
||
34 | { |
||
35 | get { return _JobLevel; } |
||
36 | } |
||
37 | |||
38 | private readonly List<string> _IsYesNo = new List<string>() { "Yes", "No" }; |
||
39 | public List<string> IsYesNo |
||
40 | { |
||
41 | get { return _IsYesNo; } |
||
42 | } |
||
43 | |||
44 | private readonly List<string> _ClientStatus = new List<string>() { "검토중", "회신완료" }; |
||
45 | public List<string> ClientStatus |
||
46 | { |
||
47 | get { return _ClientStatus; } |
||
48 | } |
||
49 | |||
50 | 482f6326 | yoush97 | private readonly List<string> _ValidationResult = new List<string>() { "O", "X" }; |
51 | c95d3bca | yoush97 | public List<string> ValidationResult |
52 | { |
||
53 | get { return _ValidationResult; } |
||
54 | } |
||
55 | |||
56 | private readonly List<string> _JobStatus = new List<string>() { "시작전", "진행중", "완료", "기타" }; |
||
57 | public List<string> JobStatus |
||
58 | { |
||
59 | get { return _JobStatus; } |
||
60 | } |
||
61 | 35d01ef5 | yoush97 | } |
62 | } |