/// <summary>
 /// Deprecated Method for adding a new object to the GoogleCheckoutLogs EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToGoogleCheckoutLogs(GoogleCheckoutLog googleCheckoutLog)
 {
     base.AddObject("GoogleCheckoutLogs", googleCheckoutLog);
 }
 /// <summary>
 /// Create a new GoogleCheckoutLog object.
 /// </summary>
 /// <param name="rowGuid">Initial value of the RowGuid property.</param>
 /// <param name="createdUtc">Initial value of the CreatedUtc property.</param>
 /// <param name="siteGuid">Initial value of the SiteGuid property.</param>
 /// <param name="userGuid">Initial value of the UserGuid property.</param>
 /// <param name="storeGuid">Initial value of the StoreGuid property.</param>
 /// <param name="cartGuid">Initial value of the CartGuid property.</param>
 /// <param name="emailListOptIn">Initial value of the EmailListOptIn property.</param>
 /// <param name="authAmt">Initial value of the AuthAmt property.</param>
 /// <param name="discountTotal">Initial value of the DiscountTotal property.</param>
 /// <param name="shippingTotal">Initial value of the ShippingTotal property.</param>
 /// <param name="taxTotal">Initial value of the TaxTotal property.</param>
 /// <param name="orderTotal">Initial value of the OrderTotal property.</param>
 /// <param name="latestChgAmt">Initial value of the LatestChgAmt property.</param>
 /// <param name="totalChgAmt">Initial value of the TotalChgAmt property.</param>
 /// <param name="latestRefundAmt">Initial value of the LatestRefundAmt property.</param>
 /// <param name="totalRefundAmt">Initial value of the TotalRefundAmt property.</param>
 /// <param name="latestChargeback">Initial value of the LatestChargeback property.</param>
 /// <param name="totalChargeback">Initial value of the TotalChargeback property.</param>
 public static GoogleCheckoutLog CreateGoogleCheckoutLog(global::System.Guid rowGuid, global::System.DateTime createdUtc, global::System.Guid siteGuid, global::System.Guid userGuid, global::System.Guid storeGuid, global::System.Guid cartGuid, global::System.Boolean emailListOptIn, global::System.Decimal authAmt, global::System.Decimal discountTotal, global::System.Decimal shippingTotal, global::System.Decimal taxTotal, global::System.Decimal orderTotal, global::System.Decimal latestChgAmt, global::System.Decimal totalChgAmt, global::System.Decimal latestRefundAmt, global::System.Decimal totalRefundAmt, global::System.Decimal latestChargeback, global::System.Decimal totalChargeback)
 {
     GoogleCheckoutLog googleCheckoutLog = new GoogleCheckoutLog();
     googleCheckoutLog.RowGuid = rowGuid;
     googleCheckoutLog.CreatedUtc = createdUtc;
     googleCheckoutLog.SiteGuid = siteGuid;
     googleCheckoutLog.UserGuid = userGuid;
     googleCheckoutLog.StoreGuid = storeGuid;
     googleCheckoutLog.CartGuid = cartGuid;
     googleCheckoutLog.EmailListOptIn = emailListOptIn;
     googleCheckoutLog.AuthAmt = authAmt;
     googleCheckoutLog.DiscountTotal = discountTotal;
     googleCheckoutLog.ShippingTotal = shippingTotal;
     googleCheckoutLog.TaxTotal = taxTotal;
     googleCheckoutLog.OrderTotal = orderTotal;
     googleCheckoutLog.LatestChgAmt = latestChgAmt;
     googleCheckoutLog.TotalChgAmt = totalChgAmt;
     googleCheckoutLog.LatestRefundAmt = latestRefundAmt;
     googleCheckoutLog.TotalRefundAmt = totalRefundAmt;
     googleCheckoutLog.LatestChargeback = latestChargeback;
     googleCheckoutLog.TotalChargeback = totalChargeback;
     return googleCheckoutLog;
 }