Example #1
0
        /// <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 IEventCountersShopTable source, DbParameterValues paramValues)
        {
            for (var i = 0; i < paramValues.Count; i++)
            {
                switch (paramValues.GetParameterName(i))
                {
                case "counter":
                    paramValues[i] = source.Counter;
                    break;

                case "shop_event_counter_id":
                    paramValues[i] = source.ShopEventCounterId;
                    break;

                case "shop_id":
                    paramValues[i] = (UInt16)source.ShopID;
                    break;
                }
            }
        }
Example #2
0
/// <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 IEventCountersShopTable source, NetGore.Db.DbParameterValues paramValues)
        {
            for (int i = 0; i < paramValues.Count; i++)
            {
                switch (paramValues.GetParameterName(i))
                {
                case "counter":
                    paramValues[i] = (System.Int64)source.Counter;
                    break;


                case "shop_event_counter_id":
                    paramValues[i] = (System.Byte)source.ShopEventCounterId;
                    break;


                case "shop_id":
                    paramValues[i] = (System.UInt16)source.ShopID;
                    break;
                }
            }
        }
/// <summary>
/// Checks if this <see cref="IEventCountersShopTable"/> contains the same values as another <see cref="IEventCountersShopTable"/>.
/// </summary>
/// <param name="source">The source <see cref="IEventCountersShopTable"/>.</param>
/// <param name="otherItem">The <see cref="IEventCountersShopTable"/> to compare the values to.</param>
/// <returns>
/// True if this <see cref="IEventCountersShopTable"/> contains the same values as the <paramref name="otherItem"/>; otherwise false.
/// </returns>
public static System.Boolean HasSameValues(this IEventCountersShopTable source, IEventCountersShopTable otherItem)
{
return Equals(source.Counter, otherItem.Counter) && 
Equals(source.ShopEventCounterId, otherItem.ShopEventCounterId) && 
Equals(source.ShopID, otherItem.ShopID);
}
 /// <summary>
 /// Initializes a new instance of the <see cref="EventCountersShopTable"/> class.
 /// </summary>
 /// <param name="source">IEventCountersShopTable to copy the initial values from.</param>
 public EventCountersShopTable(IEventCountersShopTable source)
 {
     CopyValuesFrom(source);
 }
 /// <summary>
 /// Copies the values from the given <paramref name="source"/> into this EventCountersShopTable.
 /// </summary>
 /// <param name="source">The IEventCountersShopTable to copy the values from.</param>
 public void CopyValuesFrom(IEventCountersShopTable source)
 {
     Counter            = source.Counter;
     ShopEventCounterId = source.ShopEventCounterId;
     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(IEventCountersShopTable source, IDictionary <String, Object> dic)
 {
     dic["counter"] = source.Counter;
     dic["shop_event_counter_id"] = source.ShopEventCounterId;
     dic["shop_id"] = source.ShopID;
 }
Example #7
0
/// <summary>
/// Copies the values from the given <paramref name="source"/> into this EventCountersShopTable.
/// </summary>
/// <param name="source">The IEventCountersShopTable to copy the values from.</param>
        public void CopyValuesFrom(IEventCountersShopTable source)
        {
            this.Counter            = (System.Int64)source.Counter;
            this.ShopEventCounterId = (System.Byte)source.ShopEventCounterId;
            this.ShopID             = (NetGore.Features.Shops.ShopID)source.ShopID;
        }
Example #8
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(IEventCountersShopTable source, System.Collections.Generic.IDictionary <System.String, System.Object> dic)
        {
            dic["counter"] = (System.Int64)source.Counter;
            dic["shop_event_counter_id"] = (System.Byte)source.ShopEventCounterId;
            dic["shop_id"] = (NetGore.Features.Shops.ShopID)source.ShopID;
        }
Example #9
0
 /// <summary>
 /// Checks if this <see cref="IEventCountersShopTable"/> contains the same values as another <see cref="IEventCountersShopTable"/>.
 /// </summary>
 /// <param name="source">The source <see cref="IEventCountersShopTable"/>.</param>
 /// <param name="otherItem">The <see cref="IEventCountersShopTable"/> to compare the values to.</param>
 /// <returns>
 /// True if this <see cref="IEventCountersShopTable"/> contains the same values as the <paramref name="otherItem"/>; otherwise false.
 /// </returns>
 public static Boolean HasSameValues(this IEventCountersShopTable source, IEventCountersShopTable otherItem)
 {
     return(Equals(source.Counter, otherItem.Counter) && Equals(source.ShopEventCounterId, otherItem.ShopEventCounterId) &&
            Equals(source.ShopID, otherItem.ShopID));
 }
Example #10
0
 /// <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 IEventCountersShopTable source, DbParameterValues paramValues)
 {
     paramValues["counter"] = source.Counter;
     paramValues["shop_event_counter_id"] = source.ShopEventCounterId;
     paramValues["shop_id"] = (UInt16)source.ShopID;
 }
Example #11
0
/// <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 IEventCountersShopTable source, NetGore.Db.DbParameterValues paramValues)
        {
            paramValues["counter"] = (System.Int64)source.Counter;
            paramValues["shop_event_counter_id"] = (System.Byte)source.ShopEventCounterId;
            paramValues["shop_id"] = (System.UInt16)source.ShopID;
        }
 /// <summary>
 /// Initializes a new instance of the <see cref="EventCountersShopTable"/> class.
 /// </summary>
 /// <param name="source">IEventCountersShopTable to copy the initial values from.</param>
 public EventCountersShopTable(IEventCountersShopTable source)
 {
     CopyValuesFrom(source);
 }
 /// <summary>
 /// Copies the values from the given <paramref name="source"/> into this EventCountersShopTable.
 /// </summary>
 /// <param name="source">The IEventCountersShopTable to copy the values from.</param>
 public void CopyValuesFrom(IEventCountersShopTable source)
 {
     Counter = source.Counter;
     ShopEventCounterId = source.ShopEventCounterId;
     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(IEventCountersShopTable source, IDictionary<String, Object> dic)
 {
     dic["counter"] = source.Counter;
     dic["shop_event_counter_id"] = source.ShopEventCounterId;
     dic["shop_id"] = source.ShopID;
 }
/// <summary>
/// Copies the values from the given <paramref name="source"/> into this EventCountersShopTable.
/// </summary>
/// <param name="source">The IEventCountersShopTable to copy the values from.</param>
public void CopyValuesFrom(IEventCountersShopTable source)
{
this.Counter = (System.Int64)source.Counter;
this.ShopEventCounterId = (System.Byte)source.ShopEventCounterId;
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(IEventCountersShopTable source, System.Collections.Generic.IDictionary<System.String,System.Object> dic)
{
dic["counter"] = (System.Int64)source.Counter;
dic["shop_event_counter_id"] = (System.Byte)source.ShopEventCounterId;
dic["shop_id"] = (NetGore.Features.Shops.ShopID)source.ShopID;
}