Ejemplo n.º 1
0
        public object Clone()
        {
            ListRowItem item = new ListRowItem();

            item.FirstName = this.FirstName;
            item.LastName  = this.LastName;
            item.Email     = this.Email;
            item.OrderId   = this.OrderId;
            item.Quantity  = this.Quantity;
            item.Product   = this.Product;

            return(item);
        }
Ejemplo n.º 2
0
        public object Clone()
        {
            ListRowItem item = new ListRowItem();

            item.FirstName = this.FirstName;
            item.LastName = this.LastName;
            item.Email = this.Email;
            item.OrderId = this.OrderId;
            item.Quantity = this.Quantity;
            item.Product = this.Product;

            return item;
        }