public override global::System.Data.DataTable Clone()
            {
                ShoppingCartItemDataTable cln = ((ShoppingCartItemDataTable)(base.Clone()));

                cln.InitVars();
                return(cln);
            }
 private void InitClass()
 {
     this.DataSetName             = "DataSet2";
     this.Prefix                  = "";
     this.Namespace               = "http://tempuri.org/DataSet2.xsd";
     this.EnforceConstraints      = true;
     this.SchemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
     this.tableShoppingCartItem   = new ShoppingCartItemDataTable();
     base.Tables.Add(this.tableShoppingCartItem);
 }
 internal void InitVars(bool initTable)
 {
     this.tableShoppingCartItem = ((ShoppingCartItemDataTable)(base.Tables["ShoppingCartItem"]));
     if ((initTable == true))
     {
         if ((this.tableShoppingCartItem != null))
         {
             this.tableShoppingCartItem.InitVars();
         }
     }
 }
 internal ShoppingCartItemRow(global::System.Data.DataRowBuilder rb) :
     base(rb)
 {
     this.tableShoppingCartItem = ((ShoppingCartItemDataTable)(this.Table));
 }