/// <summary>
        /// Copies the column values into the given DbParameterValues using the database column name
        /// with a prefixed @ as the key. The key must already exist in the DbParameterValues
        /// for the value to be copied over. If any of the keys in the DbParameterValues do not
        /// match one of the column names, or if there is no field for a key, then it will be
        /// ignored. Because of this, it is important to be careful when using this method
        /// since columns or keys can be skipped without any indication.
        /// </summary>
        /// <param name="source">The object to copy the values from.</param>
        /// <param name="paramValues">The DbParameterValues to copy the values into.</param>
        public static void TryCopyValues(this IWorldStatsCountShopBuyTable source, DbParameterValues paramValues)
        {
            for (var i = 0; i < paramValues.Count; i++)
            {
                switch (paramValues.GetParameterName(i))
                {
                case "count":
                    paramValues[i] = source.Count;
                    break;

                case "last_update":
                    paramValues[i] = source.LastUpdate;
                    break;

                case "shop_id":
                    paramValues[i] = (UInt16)source.ShopID;
                    break;
                }
            }
        }
/// <summary>
/// Copies the column values into the given DbParameterValues using the database column name
/// with a prefixed @ as the key. The key must already exist in the DbParameterValues
/// for the value to be copied over. If any of the keys in the DbParameterValues do not
/// match one of the column names, or if there is no field for a key, then it will be
/// ignored. Because of this, it is important to be careful when using this method
/// since columns or keys can be skipped without any indication.
/// </summary>
/// <param name="source">The object to copy the values from.</param>
/// <param name="paramValues">The DbParameterValues to copy the values into.</param>
        public static void TryCopyValues(this IWorldStatsCountShopBuyTable source, NetGore.Db.DbParameterValues paramValues)
        {
            for (int i = 0; i < paramValues.Count; i++)
            {
                switch (paramValues.GetParameterName(i))
                {
                case "count":
                    paramValues[i] = (System.Int32)source.Count;
                    break;


                case "last_update":
                    paramValues[i] = (System.DateTime)source.LastUpdate;
                    break;


                case "shop_id":
                    paramValues[i] = (System.UInt16)source.ShopID;
                    break;
                }
            }
        }
/// <summary>
/// Copies the column values into the given DbParameterValues using the database column name
/// with a prefixed @ as the key. The keys must already exist in the DbParameterValues;
///  this method will not create them if they are missing.
/// </summary>
/// <param name="source">The object to copy the values from.</param>
/// <param name="paramValues">The DbParameterValues to copy the values into.</param>
        public static void CopyValues(this IWorldStatsCountShopBuyTable source, NetGore.Db.DbParameterValues paramValues)
        {
            paramValues["count"]       = (System.Int32)source.Count;
            paramValues["last_update"] = (System.DateTime)source.LastUpdate;
            paramValues["shop_id"]     = (System.UInt16)source.ShopID;
        }
/// <summary>
/// Checks if this <see cref="IWorldStatsCountShopBuyTable"/> contains the same values as another <see cref="IWorldStatsCountShopBuyTable"/>.
/// </summary>
/// <param name="source">The source <see cref="IWorldStatsCountShopBuyTable"/>.</param>
/// <param name="otherItem">The <see cref="IWorldStatsCountShopBuyTable"/> to compare the values to.</param>
/// <returns>
/// True if this <see cref="IWorldStatsCountShopBuyTable"/> contains the same values as the <paramref name="otherItem"/>; otherwise false.
/// </returns>
        public static System.Boolean HasSameValues(this IWorldStatsCountShopBuyTable source, IWorldStatsCountShopBuyTable otherItem)
        {
            return(Equals(source.Count, otherItem.Count) &&
                   Equals(source.LastUpdate, otherItem.LastUpdate) &&
                   Equals(source.ShopID, otherItem.ShopID));
        }
/// <summary>
/// Copies the values from the given <paramref name="source"/> into this WorldStatsCountShopBuyTable.
/// </summary>
/// <param name="source">The IWorldStatsCountShopBuyTable to copy the values from.</param>
public void CopyValuesFrom(IWorldStatsCountShopBuyTable source)
{
this.Count = (System.Int32)source.Count;
this.LastUpdate = (System.DateTime)source.LastUpdate;
this.ShopID = (NetGore.Features.Shops.ShopID)source.ShopID;
}
/// <summary>
/// Copies the column values into the given Dictionary using the database column name
/// with a prefixed @ as the key. The keys must already exist in the Dictionary;
/// this method will not create them if they are missing.
/// </summary>
/// <param name="source">The object to copy the values from.</param>
/// <param name="dic">The Dictionary to copy the values into.</param>
public static void CopyValues(IWorldStatsCountShopBuyTable source, System.Collections.Generic.IDictionary<System.String,System.Object> dic)
{
dic["count"] = (System.Int32)source.Count;
dic["last_update"] = (System.DateTime)source.LastUpdate;
dic["shop_id"] = (NetGore.Features.Shops.ShopID)source.ShopID;
}
/// <summary>
/// Initializes a new instance of the <see cref="WorldStatsCountShopBuyTable"/> class.
/// </summary>
/// <param name="source">IWorldStatsCountShopBuyTable to copy the initial values from.</param>
public WorldStatsCountShopBuyTable(IWorldStatsCountShopBuyTable source)
{
CopyValuesFrom(source);
}
 /// <summary>
 /// Checks if this <see cref="IWorldStatsCountShopBuyTable"/> contains the same values as another <see cref="IWorldStatsCountShopBuyTable"/>.
 /// </summary>
 /// <param name="source">The source <see cref="IWorldStatsCountShopBuyTable"/>.</param>
 /// <param name="otherItem">The <see cref="IWorldStatsCountShopBuyTable"/> to compare the values to.</param>
 /// <returns>
 /// True if this <see cref="IWorldStatsCountShopBuyTable"/> contains the same values as the <paramref name="otherItem"/>; otherwise false.
 /// </returns>
 public static Boolean HasSameValues(this IWorldStatsCountShopBuyTable source, IWorldStatsCountShopBuyTable otherItem)
 {
     return Equals(source.Count, otherItem.Count) && Equals(source.LastUpdate, otherItem.LastUpdate) &&
            Equals(source.ShopID, otherItem.ShopID);
 }
 /// <summary>
 /// Copies the values from the given <paramref name="source"/> into this WorldStatsCountShopBuyTable.
 /// </summary>
 /// <param name="source">The IWorldStatsCountShopBuyTable to copy the values from.</param>
 public void CopyValuesFrom(IWorldStatsCountShopBuyTable source)
 {
     Count = source.Count;
     LastUpdate = source.LastUpdate;
     ShopID = source.ShopID;
 }
 /// <summary>
 /// Copies the column values into the given Dictionary using the database column name
 /// with a prefixed @ as the key. The keys must already exist in the Dictionary;
 /// this method will not create them if they are missing.
 /// </summary>
 /// <param name="source">The object to copy the values from.</param>
 /// <param name="dic">The Dictionary to copy the values into.</param>
 public static void CopyValues(IWorldStatsCountShopBuyTable source, IDictionary<String, Object> dic)
 {
     dic["count"] = source.Count;
     dic["last_update"] = source.LastUpdate;
     dic["shop_id"] = source.ShopID;
 }
Example #11
0
/// <summary>
/// Copies the values from the given <paramref name="source"/> into this WorldStatsCountShopBuyTable.
/// </summary>
/// <param name="source">The IWorldStatsCountShopBuyTable to copy the values from.</param>
        public void CopyValuesFrom(IWorldStatsCountShopBuyTable source)
        {
            this.Count      = (System.Int32)source.Count;
            this.LastUpdate = (System.DateTime)source.LastUpdate;
            this.ShopID     = (NetGore.Features.Shops.ShopID)source.ShopID;
        }
Example #12
0
/// <summary>
/// Copies the column values into the given Dictionary using the database column name
/// with a prefixed @ as the key. The keys must already exist in the Dictionary;
/// this method will not create them if they are missing.
/// </summary>
/// <param name="source">The object to copy the values from.</param>
/// <param name="dic">The Dictionary to copy the values into.</param>
        public static void CopyValues(IWorldStatsCountShopBuyTable source, System.Collections.Generic.IDictionary <System.String, System.Object> dic)
        {
            dic["count"]       = (System.Int32)source.Count;
            dic["last_update"] = (System.DateTime)source.LastUpdate;
            dic["shop_id"]     = (NetGore.Features.Shops.ShopID)source.ShopID;
        }
Example #13
0
/// <summary>
/// Initializes a new instance of the <see cref="WorldStatsCountShopBuyTable"/> class.
/// </summary>
/// <param name="source">IWorldStatsCountShopBuyTable to copy the initial values from.</param>
        public WorldStatsCountShopBuyTable(IWorldStatsCountShopBuyTable source)
        {
            CopyValuesFrom(source);
        }
Example #14
0
 /// <summary>
 /// Copies the values from the given <paramref name="source"/> into this WorldStatsCountShopBuyTable.
 /// </summary>
 /// <param name="source">The IWorldStatsCountShopBuyTable to copy the values from.</param>
 public void CopyValuesFrom(IWorldStatsCountShopBuyTable source)
 {
     Count      = source.Count;
     LastUpdate = source.LastUpdate;
     ShopID     = source.ShopID;
 }
Example #15
0
 /// <summary>
 /// Copies the column values into the given Dictionary using the database column name
 /// with a prefixed @ as the key. The keys must already exist in the Dictionary;
 /// this method will not create them if they are missing.
 /// </summary>
 /// <param name="source">The object to copy the values from.</param>
 /// <param name="dic">The Dictionary to copy the values into.</param>
 public static void CopyValues(IWorldStatsCountShopBuyTable source, IDictionary <String, Object> dic)
 {
     dic["count"]       = source.Count;
     dic["last_update"] = source.LastUpdate;
     dic["shop_id"]     = source.ShopID;
 }
 /// <summary>
 /// Copies the column values into the given DbParameterValues using the database column name
 /// with a prefixed @ as the key. The keys must already exist in the DbParameterValues;
 ///  this method will not create them if they are missing.
 /// </summary>
 /// <param name="source">The object to copy the values from.</param>
 /// <param name="paramValues">The DbParameterValues to copy the values into.</param>
 public static void CopyValues(this IWorldStatsCountShopBuyTable source, DbParameterValues paramValues)
 {
     paramValues["count"]       = source.Count;
     paramValues["last_update"] = source.LastUpdate;
     paramValues["shop_id"]     = (UInt16)source.ShopID;
 }