Add Master Data
This commit is contained in:
9
AMREZ.EOP.Domain/Shared/Customer/AddressLabel.cs
Normal file
9
AMREZ.EOP.Domain/Shared/Customer/AddressLabel.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace AMREZ.EOP.Domain.Shared.Customer;
|
||||
|
||||
public enum AddressLabel
|
||||
{
|
||||
Billing,
|
||||
Shipping,
|
||||
Registered,
|
||||
Other
|
||||
}
|
||||
11
AMREZ.EOP.Domain/Shared/Customer/ContactType.cs
Normal file
11
AMREZ.EOP.Domain/Shared/Customer/ContactType.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace AMREZ.EOP.Domain.Shared.Customer;
|
||||
|
||||
public enum ContactType
|
||||
{
|
||||
Email,
|
||||
Phone,
|
||||
Line,
|
||||
Whatsapp,
|
||||
WeChat,
|
||||
Other
|
||||
}
|
||||
8
AMREZ.EOP.Domain/Shared/Customer/CustomerStatus.cs
Normal file
8
AMREZ.EOP.Domain/Shared/Customer/CustomerStatus.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace AMREZ.EOP.Domain.Shared.Customer;
|
||||
|
||||
public enum CustomerStatus
|
||||
{
|
||||
Active,
|
||||
Inactive,
|
||||
Blacklisted
|
||||
}
|
||||
7
AMREZ.EOP.Domain/Shared/Customer/PartyType.cs
Normal file
7
AMREZ.EOP.Domain/Shared/Customer/PartyType.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace AMREZ.EOP.Domain.Shared.Customer;
|
||||
|
||||
public enum PartyType
|
||||
{
|
||||
Person,
|
||||
Organization
|
||||
}
|
||||
Reference in New Issue
Block a user