예제 #1
0
파일: Customer.cs 프로젝트: dimas-lex/c-_jj
 private void IsValidEmail(Customer c)
 {
 }
예제 #2
0
파일: Customer.cs 프로젝트: dimas-lex/c-_jj
        public object Clone()
        {
            Customer newCustomer = new Customer(this.FirstName, this.LastName, this.EmailAddress, true);

            return newCustomer;
        }