///<summary>
        /// A simple factory method to create a new <see cref="MercLocation"/> instance.
        ///</summary>
        ///<param name="_stkId"></param>
        ///<param name="_locId"></param>
        ///<param name="_goodsId"></param>
        ///<param name="_check"></param>
        public static MercLocation CreateMercLocation(System.String _stkId, System.String _locId, System.String _goodsId,
                                                      System.Boolean _check)
        {
            MercLocation newMercLocation = new MercLocation();

            newMercLocation.StkId   = _stkId;
            newMercLocation.LocId   = _locId;
            newMercLocation.GoodsId = _goodsId;
            newMercLocation.Check   = _check;
            return(newMercLocation);
        }
        /// <summary>
        ///     Update an existing row in the datasource.
        /// </summary>
        /// <param name="transactionManager"><see cref="TransactionManager"/> object</param>
        /// <param name="entity">LibraryManagement.Domain.MercLocation object to update.</param>
        /// <remarks>
        ///		After updating the datasource, the LibraryManagement.Domain.MercLocation object will be updated
        ///     to refelect any changes made by the datasource. (ie: identity or computed columns)
        /// </remarks>
        /// <returns>Returns true if operation is successful.</returns>
        /// <exception cref="System.Exception">The command could not be executed.</exception>
        /// <exception cref="System.Data.DataException">The <paramref name="transactionManager"/> is not open.</exception>
        /// <exception cref="System.Data.Common.DbException">The command could not be executed.</exception>
        public override bool Update(TransactionManager transactionManager, LibraryManagement.Domain.MercLocation entity)
        {
            SqlDatabase database       = new SqlDatabase(this._connectionString);
            DbCommand   commandWrapper = StoredProcedureProvider.GetCommandWrapper(database, "dbo.tblMercLocation_Update", _useStoredProcedure);

            database.AddInParameter(commandWrapper, "@Idx", DbType.Decimal, entity.Idx);
            database.AddInParameter(commandWrapper, "@StkId", DbType.StringFixedLength, entity.StkId);
            database.AddInParameter(commandWrapper, "@LocId", DbType.StringFixedLength, entity.LocId);
            database.AddInParameter(commandWrapper, "@GoodsId", DbType.StringFixedLength, entity.GoodsId);
            database.AddInParameter(commandWrapper, "@Check", DbType.Boolean, entity.Check);

            int results = 0;

            //Provider Data Requesting Command Event
            OnDataRequesting(new CommandEventArgs(commandWrapper, "Update", entity));

            if (transactionManager != null)
            {
                results = Utility.ExecuteNonQuery(transactionManager, commandWrapper);
            }
            else
            {
                results = Utility.ExecuteNonQuery(database, commandWrapper);
            }

            //Stop Tracking Now that it has been updated and persisted.
            if (DataRepository.Provider.EnableEntityTracking)
            {
                EntityManager.StopTracking(entity.EntityTrackingKey);
            }


            entity.AcceptChanges();

            //Provider Data Requested Command Event
            OnDataRequested(new CommandEventArgs(commandWrapper, "Update", entity));

            return(Convert.ToBoolean(results));
        }
        /// <summary>
        ///     Inserts a LibraryManagement.Domain.MercLocation object into the datasource using a transaction.
        /// </summary>
        /// <param name="transactionManager"><see cref="TransactionManager"/> object</param>
        /// <param name="entity">LibraryManagement.Domain.MercLocation object to insert.</param>
        /// <remarks>
        ///		After inserting into the datasource, the LibraryManagement.Domain.MercLocation object will be updated
        ///     to refelect any changes made by the datasource. (ie: identity or computed columns)
        /// </remarks>
        /// <returns>Returns true if operation is successful.</returns>
        /// <exception cref="System.Exception">The command could not be executed.</exception>
        /// <exception cref="System.Data.DataException">The <paramref name="transactionManager"/> is not open.</exception>
        /// <exception cref="System.Data.Common.DbException">The command could not be executed.</exception>
        public override bool Insert(TransactionManager transactionManager, LibraryManagement.Domain.MercLocation entity)
        {
            SqlDatabase database       = new SqlDatabase(this._connectionString);
            DbCommand   commandWrapper = StoredProcedureProvider.GetCommandWrapper(database, "dbo.tblMercLocation_Insert", _useStoredProcedure);

            database.AddOutParameter(commandWrapper, "@Idx", DbType.Decimal, 9);
            database.AddInParameter(commandWrapper, "@StkId", DbType.StringFixedLength, entity.StkId);
            database.AddInParameter(commandWrapper, "@LocId", DbType.StringFixedLength, entity.LocId);
            database.AddInParameter(commandWrapper, "@GoodsId", DbType.StringFixedLength, entity.GoodsId);
            database.AddInParameter(commandWrapper, "@Check", DbType.Boolean, entity.Check);

            int results = 0;

            //Provider Data Requesting Command Event
            OnDataRequesting(new CommandEventArgs(commandWrapper, "Insert", entity));

            if (transactionManager != null)
            {
                results = Utility.ExecuteNonQuery(transactionManager, commandWrapper);
            }
            else
            {
                results = Utility.ExecuteNonQuery(database, commandWrapper);
            }

            object _idx = database.GetParameterValue(commandWrapper, "@Idx");

            entity.Idx = (System.Decimal)_idx;


            entity.AcceptChanges();

            //Provider Data Requested Command Event
            OnDataRequested(new CommandEventArgs(commandWrapper, "Insert", entity));

            return(Convert.ToBoolean(results));
        }
        ///<summary>
        ///  Returns a Typed MercLocation Entity
        ///</summary>
        protected virtual MercLocation Copy(IDictionary existingCopies)
        {
            if (existingCopies == null)
            {
                // This is the root of the tree to be copied!
                existingCopies = new Hashtable();
            }

            //shallow copy entity
            MercLocation copy = new MercLocation();

            existingCopies.Add(this, copy);
            copy.SuppressEntityEvents = true;
            copy.Idx     = this.Idx;
            copy.StkId   = this.StkId;
            copy.LocId   = this.LocId;
            copy.GoodsId = this.GoodsId;
            copy.Check   = this.Check;


            copy.EntityState          = this.EntityState;
            copy.SuppressEntityEvents = false;
            return(copy);
        }