/// <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 IActiveTradeItemTable source, DbParameterValues paramValues)
        {
            for (var i = 0; i < paramValues.Count; i++)
            {
                switch (paramValues.GetParameterName(i))
                {
                case "character_id":
                    paramValues[i] = (Int32)source.CharacterID;
                    break;

                case "item_id":
                    paramValues[i] = (Int32)source.ItemID;
                    break;
                }
            }
        }
/// <summary>
/// Checks if this <see cref="IActiveTradeItemTable"/> contains the same values as another <see cref="IActiveTradeItemTable"/>.
/// </summary>
/// <param name="source">The source <see cref="IActiveTradeItemTable"/>.</param>
/// <param name="otherItem">The <see cref="IActiveTradeItemTable"/> to compare the values to.</param>
/// <returns>
/// True if this <see cref="IActiveTradeItemTable"/> contains the same values as the <paramref name="otherItem"/>; otherwise false.
/// </returns>
public static System.Boolean HasSameValues(this IActiveTradeItemTable source, IActiveTradeItemTable otherItem)
{
return Equals(source.CharacterID, otherItem.CharacterID) && 
Equals(source.ItemID, otherItem.ItemID);
}
 /// <summary>
 /// Initializes a new instance of the <see cref="ActiveTradeItemTable"/> class.
 /// </summary>
 /// <param name="source">IActiveTradeItemTable to copy the initial values from.</param>
 public ActiveTradeItemTable(IActiveTradeItemTable source)
 {
     CopyValuesFrom(source);
 }
 /// <summary>
 /// Copies the values from the given <paramref name="source"/> into this ActiveTradeItemTable.
 /// </summary>
 /// <param name="source">The IActiveTradeItemTable to copy the values from.</param>
 public void CopyValuesFrom(IActiveTradeItemTable source)
 {
     CharacterID = source.CharacterID;
     ItemID      = source.ItemID;
 }
 /// <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(IActiveTradeItemTable source, IDictionary <String, Object> dic)
 {
     dic["character_id"] = source.CharacterID;
     dic["item_id"]      = source.ItemID;
 }
Esempio n. 6
0
/// <summary>
/// Copies the values from the given <paramref name="source"/> into this ActiveTradeItemTable.
/// </summary>
/// <param name="source">The IActiveTradeItemTable to copy the values from.</param>
public void CopyValuesFrom(IActiveTradeItemTable source)
{
this.CharacterID = (DemoGame.CharacterID)source.CharacterID;
this.ItemID = (DemoGame.ItemID)source.ItemID;
}
Esempio n. 7
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(IActiveTradeItemTable source, System.Collections.Generic.IDictionary<System.String,System.Object> dic)
{
dic["character_id"] = (DemoGame.CharacterID)source.CharacterID;
dic["item_id"] = (DemoGame.ItemID)source.ItemID;
}
Esempio n. 8
0
/// <summary>
/// Initializes a new instance of the <see cref="ActiveTradeItemTable"/> class.
/// </summary>
/// <param name="source">IActiveTradeItemTable to copy the initial values from.</param>
public ActiveTradeItemTable(IActiveTradeItemTable source)
{
CopyValuesFrom(source);
}
/// <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 IActiveTradeItemTable source, NetGore.Db.DbParameterValues paramValues)
        {
            paramValues["character_id"] = (System.Int32)source.CharacterID;
            paramValues["item_id"]      = (System.Int32)source.ItemID;
        }
/// <summary>
/// Checks if this <see cref="IActiveTradeItemTable"/> contains the same values as another <see cref="IActiveTradeItemTable"/>.
/// </summary>
/// <param name="source">The source <see cref="IActiveTradeItemTable"/>.</param>
/// <param name="otherItem">The <see cref="IActiveTradeItemTable"/> to compare the values to.</param>
/// <returns>
/// True if this <see cref="IActiveTradeItemTable"/> contains the same values as the <paramref name="otherItem"/>; otherwise false.
/// </returns>
        public static System.Boolean HasSameValues(this IActiveTradeItemTable source, IActiveTradeItemTable otherItem)
        {
            return(Equals(source.CharacterID, otherItem.CharacterID) &&
                   Equals(source.ItemID, otherItem.ItemID));
        }
/// <summary>
/// Copies the values from the given <paramref name="source"/> into this ActiveTradeItemTable.
/// </summary>
/// <param name="source">The IActiveTradeItemTable to copy the values from.</param>
        public void CopyValuesFrom(IActiveTradeItemTable source)
        {
            this.CharacterID = (DemoGame.CharacterID)source.CharacterID;
            this.ItemID      = (DemoGame.ItemID)source.ItemID;
        }
/// <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(IActiveTradeItemTable source, System.Collections.Generic.IDictionary <System.String, System.Object> dic)
        {
            dic["character_id"] = (DemoGame.CharacterID)source.CharacterID;
            dic["item_id"]      = (DemoGame.ItemID)source.ItemID;
        }
Esempio n. 13
0
 /// <summary>
 /// Copies the values from the given <paramref name="source"/> into this ActiveTradeItemTable.
 /// </summary>
 /// <param name="source">The IActiveTradeItemTable to copy the values from.</param>
 public void CopyValuesFrom(IActiveTradeItemTable source)
 {
     CharacterID = source.CharacterID;
     ItemID = source.ItemID;
 }
Esempio n. 14
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(IActiveTradeItemTable source, IDictionary<String, Object> dic)
 {
     dic["character_id"] = source.CharacterID;
     dic["item_id"] = source.ItemID;
 }