hytos / ID2.Manager / ID2.Manager.Common / Informations.cs @ 4013fbc5
이력 | 보기 | 이력해설 | 다운로드 (1.57 KB)
1 |
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 |
|
30 |
private readonly List<string> _JobLevel = new List<string>() { "1", "2", "3", "4", "5" }; |
31 |
public List<string> JobLevel |
32 |
{ |
33 |
get { return _JobLevel; } |
34 |
} |
35 |
|
36 |
private readonly List<string> _IsYesNo = new List<string>() { "Yes", "No" }; |
37 |
public List<string> IsYesNo |
38 |
{ |
39 |
get { return _IsYesNo; } |
40 |
} |
41 |
|
42 |
private readonly List<string> _ClientStatus = new List<string>() { "검토중", "회신완료" }; |
43 |
public List<string> ClientStatus |
44 |
{ |
45 |
get { return _ClientStatus; } |
46 |
} |
47 |
|
48 |
private readonly List<string> _ValidationResult = new List<string>() { "O", "X" }; |
49 |
public List<string> ValidationResult |
50 |
{ |
51 |
get { return _ValidationResult; } |
52 |
} |
53 |
|
54 |
private readonly List<string> _JobStatus = new List<string>() { "시작전", "진행중", "완료", "기타" }; |
55 |
public List<string> JobStatus |
56 |
{ |
57 |
get { return _JobStatus; } |
58 |
} |
59 |
} |
60 |
} |