Example #1
0
 private void IsValidEmail(Customer c)
 {
 }
Example #2
0
        public object Clone()
        {
            Customer newCustomer = new Customer(this.FirstName, this.LastName, this.EmailAddress, true);

            return newCustomer;
        }