///<summary>
 ///  Returns a Typed QuarterlyOrdersBase Entity 
 ///</summary>
 public virtual QuarterlyOrdersBase Copy()
 {
     //shallow copy entity
     QuarterlyOrders copy = new QuarterlyOrders();
         copy.CustomerId = this.CustomerId;
         copy.CompanyName = this.CompanyName;
         copy.City = this.City;
         copy.Country = this.Country;
     copy.AcceptChanges();
     return (QuarterlyOrders)copy;
 }