Exemple #1
0
 public CustomerViewModel(CustomerQueryData.Models.Customer customer)
 {
     this.CustomerId = customer.CustomerId;
     this.FirstName  = customer.FirstName;
     this.LastName   = customer.LastName;
     this.Email      = customer.Email;
     this.UserName   = customer.UserName;
     this.Password   = customer.Password;
 }
Exemple #2
0
        public CustomerQueryData.Models.Customer ConvertToCustomer()
        {
            CustomerQueryData.Models.Customer domainCustomer = new CustomerQueryData.Models.Customer();

            //
            if (this.CustomerId != 0)
            {
                // If Edit mode, get customerId
                domainCustomer.CustomerId = this.CustomerId;
            }

            domainCustomer.FirstName = this.FirstName;
            domainCustomer.LastName  = this.LastName;
            domainCustomer.Email     = this.Email;
            domainCustomer.UserName  = this.UserName;
            domainCustomer.Password  = this.Password;

            return(domainCustomer);
        }