Init Git
This commit is contained in:
8
AMREZ.EOP.Domain/Shared/HumanResources/AddressType.cs
Normal file
8
AMREZ.EOP.Domain/Shared/HumanResources/AddressType.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace AMREZ.EOP.Domain.Shared.HumanResources;
|
||||
|
||||
public enum AddressType
|
||||
{
|
||||
Home = 1,
|
||||
Mailing = 2,
|
||||
Other = 9
|
||||
}
|
||||
9
AMREZ.EOP.Domain/Shared/HumanResources/EmploymentType.cs
Normal file
9
AMREZ.EOP.Domain/Shared/HumanResources/EmploymentType.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace AMREZ.EOP.Domain.Shared.HumanResources;
|
||||
|
||||
public enum EmploymentType
|
||||
{
|
||||
Permanent = 1,
|
||||
Contract = 2,
|
||||
PartTime = 3,
|
||||
Intern = 4
|
||||
}
|
||||
9
AMREZ.EOP.Domain/Shared/HumanResources/Gender.cs
Normal file
9
AMREZ.EOP.Domain/Shared/HumanResources/Gender.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace AMREZ.EOP.Domain.Shared.HumanResources;
|
||||
|
||||
public enum Gender
|
||||
{
|
||||
Unknown = 0,
|
||||
Male = 1,
|
||||
Female = 2,
|
||||
Other = 3
|
||||
}
|
||||
Reference in New Issue
Block a user