-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRosettaPerson.cs
More file actions
81 lines (76 loc) · 3.35 KB
/
Copy pathRosettaPerson.cs
File metadata and controls
81 lines (76 loc) · 3.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
namespace UCDRosettaAPI;
public class RosettaPerson
{
public string IAM_ID {get;set;}
public string Login_ID {get;set;}
public string Mothra_ID {get;set;}
public string Employee_ID {get;set;}
public string Mail_ID_Campus {get;set;}
public string Mail_ID_Health {get;set;}
public string Email_Address_Campus {get;set;}
public string Email_Address_Health {get;set;}
public string Lived_First_Name {get;set;}
public string Lived_Last_Name {get;set;}
public string? DisplayName {get;set;}
public string Provisioning_Status_Primary {get;set;}
public string Provisioning_Status_Employee {get;set;}
public string Provisioning_Status_Faculty {get;set;}
public string Provisioning_Status_Student {get;set;}
public bool Affiliation_Employee {get;set;}
public bool Affiliation_Faculty {get;set;}
public bool Affiliation_Temporary_Affiliate {get;set;}
public bool Affiliation_Student {get;set;}
public bool Affiliation_Student_Applicant {get;set;}
public bool Affiliation_Health_Affiliate {get;set;}
public bool Employment_Is_Academic {get;set;}
public bool Employment_Is_Academic_Senate {get;set;}
public bool Employment_Is_Academic_Federation {get;set;}
public bool Employment_Is_Faculty {get;set;}
public bool Employment_Is_Teaching_Faculty {get;set;}
public bool Employment_Is_Ladder_Rank {get;set;}
public bool Employment_Is_Without_Salary {get;set;}
public bool Employment_Is_MSP {get;set;}
public bool Employment_Is_SSP {get;set;}
public bool Employment_Is_Manager {get;set;}
public bool Employment_Is_Campus_Employee {get;set;}
public bool Employment_Is_Health_Employee {get;set;}
public List<RosettaEmployeeAssociation> lEmployeeAssociations {get;set;}
public List<RosettaStudentAssociationShort> lStudentAssociations {get;set;}
public RosettaPerson()
{
IAM_ID = string.Empty;
Login_ID = string.Empty;
Mothra_ID = string.Empty;
Employee_ID = string.Empty;
Mail_ID_Campus = string.Empty;
Mail_ID_Health = string.Empty;
Email_Address_Campus = string.Empty;
Email_Address_Health = string.Empty;
Lived_First_Name = string.Empty;
Lived_Last_Name = string.Empty;
Provisioning_Status_Employee = string.Empty;
Provisioning_Status_Faculty = string.Empty;
Provisioning_Status_Primary = string.Empty;
Provisioning_Status_Student = string.Empty;
Affiliation_Employee = false;
Affiliation_Faculty = false;
Affiliation_Temporary_Affiliate = false;
Affiliation_Student = false;
Affiliation_Student_Applicant = false;
Affiliation_Health_Affiliate = false;
Employment_Is_Academic = false;
Employment_Is_Academic_Senate = false;
Employment_Is_Academic_Federation = false;
Employment_Is_Faculty = false;
Employment_Is_Teaching_Faculty = false;
Employment_Is_Ladder_Rank = false;
Employment_Is_Without_Salary = false;
Employment_Is_MSP = false;
Employment_Is_SSP = false;
Employment_Is_Manager = false;
Employment_Is_Campus_Employee = false;
Employment_Is_Health_Employee = false;
lEmployeeAssociations = new List<RosettaEmployeeAssociation>();
lStudentAssociations = new List<RosettaStudentAssociationShort>();
}
}