Example #1
0
        public void ModifyCustomer(string p_oid, string p_firstName, string p_email, string p_password, string p_lastName, string p_address, string p_telephone, string p_zip)
        {
            CustomerEN customerEN = null;

            //Initialized CustomerEN
            customerEN           = new CustomerEN();
            customerEN.Idnumber  = p_oid;
            customerEN.FirstName = p_firstName;
            customerEN.Email     = p_email;
            customerEN.Password  = p_password;
            customerEN.LastName  = p_lastName;
            customerEN.Address   = p_address;
            customerEN.Telephone = p_telephone;
            customerEN.Zip       = p_zip;
            //Call to CustomerCAD

            _ICustomerCAD.ModifyCustomer(customerEN);
        }