Add Master Data

This commit is contained in:
Thanakarn Klangkasame
2025-10-10 16:22:06 +07:00
parent ad0d9e41ba
commit d4ab1cb592
55 changed files with 16058 additions and 197 deletions

View File

@@ -0,0 +1,9 @@
namespace AMREZ.EOP.Domain.Shared.Customer;
public enum AddressLabel
{
Billing,
Shipping,
Registered,
Other
}

View File

@@ -0,0 +1,11 @@
namespace AMREZ.EOP.Domain.Shared.Customer;
public enum ContactType
{
Email,
Phone,
Line,
Whatsapp,
WeChat,
Other
}

View File

@@ -0,0 +1,8 @@
namespace AMREZ.EOP.Domain.Shared.Customer;
public enum CustomerStatus
{
Active,
Inactive,
Blacklisted
}

View File

@@ -0,0 +1,7 @@
namespace AMREZ.EOP.Domain.Shared.Customer;
public enum PartyType
{
Person,
Organization
}