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,15 @@
using AMREZ.EOP.Domain.Entities.Common;
using AMREZ.EOP.Domain.Shared.Customer;
namespace AMREZ.EOP.Domain.Entities.Customers;
public sealed class CustomerContact : BaseEntity
{
public Guid CustomerProfileId { get; set; }
public ContactType Type { get; set; }
public string Value { get; set; } = default!;
public bool IsPrimary { get; set; }
public bool IsVerified { get; set; }
public CustomerProfile Customer { get; set; } = default!;
}