Example #1
0
        /// <summary>
        ///     Inserts a LibraryManagement.Domain.NonPlu object into the datasource using a transaction.
        /// </summary>
        /// <param name="transactionManager"><see cref="TransactionManager"/> object</param>
        /// <param name="entity">LibraryManagement.Domain.NonPlu object to insert.</param>
        /// <remarks>
        ///		After inserting into the datasource, the LibraryManagement.Domain.NonPlu 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.NonPlu entity)
        {
            SqlDatabase database       = new SqlDatabase(this._connectionString);
            DbCommand   commandWrapper = StoredProcedureProvider.GetCommandWrapper(database, "dbo.tblNon_Plu_Insert", _useStoredProcedure);

            database.AddInParameter(commandWrapper, "@NpluCode", DbType.AnsiStringFixedLength, entity.NpluCode);
            database.AddInParameter(commandWrapper, "@GoodsId", DbType.StringFixedLength, entity.GoodsId);

            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);
            }


            entity.OriginalNpluCode = entity.NpluCode;
            entity.OriginalGoodsId  = entity.GoodsId;

            entity.AcceptChanges();

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

            return(Convert.ToBoolean(results));
        }
        ///<summary>
        /// A simple factory method to create a new <see cref="NonPlu"/> instance.
        ///</summary>
        ///<param name="_npluCode"></param>
        ///<param name="_goodsId"></param>
        public static NonPlu CreateNonPlu(System.String _npluCode, System.String _goodsId)
        {
            NonPlu newNonPlu = new NonPlu();

            newNonPlu.NpluCode = _npluCode;
            newNonPlu.GoodsId  = _goodsId;
            return(newNonPlu);
        }
        ///<summary>
        ///  Returns a Typed NonPlu Entity
        ///</summary>
        protected virtual NonPlu Copy(IDictionary existingCopies)
        {
            if (existingCopies == null)
            {
                // This is the root of the tree to be copied!
                existingCopies = new Hashtable();
            }

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

            existingCopies.Add(this, copy);
            copy.SuppressEntityEvents = true;
            copy.NpluCode             = this.NpluCode;
            copy.OriginalNpluCode     = this.OriginalNpluCode;
            copy.GoodsId         = this.GoodsId;
            copy.OriginalGoodsId = this.OriginalGoodsId;


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