/// <summary>
 /// Deprecated Method for adding a new object to the SalesLastMonthView EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToSalesLastMonthView(SalesLastMonthView salesLastMonthView)
 {
     base.AddObject("SalesLastMonthView", salesLastMonthView);
 }
 /// <summary>
 /// Create a new SalesLastMonthView object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="licenseName">Initial value of the LicenseName property.</param>
 /// <param name="generatedLicenseKey">Initial value of the GeneratedLicenseKey property.</param>
 /// <param name="created">Initial value of the Created property.</param>
 /// <param name="updated">Initial value of the Updated property.</param>
 /// <param name="productPrice">Initial value of the ProductPrice property.</param>
 /// <param name="ourTake">Initial value of the OurTake property.</param>
 public static SalesLastMonthView CreateSalesLastMonthView(global::System.Int32 id, global::System.String licenseName, global::System.String generatedLicenseKey, global::System.DateTime created, global::System.DateTime updated, global::System.Decimal productPrice, global::System.Decimal ourTake)
 {
     SalesLastMonthView salesLastMonthView = new SalesLastMonthView();
     salesLastMonthView.Id = id;
     salesLastMonthView.LicenseName = licenseName;
     salesLastMonthView.GeneratedLicenseKey = generatedLicenseKey;
     salesLastMonthView.Created = created;
     salesLastMonthView.Updated = updated;
     salesLastMonthView.ProductPrice = productPrice;
     salesLastMonthView.OurTake = ourTake;
     return salesLastMonthView;
 }