Ejemplo n.º 1
0
 public void SetFields(CustomerEmailDTO customerEmail)
 {
     IsPrimary = customerEmail.IsPrimary;
     Address   = customerEmail.Address;
 }
Ejemplo n.º 2
0
        public CustomerEmail(CustomerEmailDTO customerEmail) : this()
        {
            CreatedDate = DateTime.UtcNow;

            SetFields(customerEmail);
        }