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

            database.AddInParameter(commandWrapper, "@Id", DbType.Decimal, entity.Id);
            database.AddInParameter(commandWrapper, "@Description", DbType.String, entity.Description);
            database.AddInParameter(commandWrapper, "@Status", DbType.Boolean, entity.Status);

            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.OriginalId = entity.Id;

            entity.AcceptChanges();

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

            return(Convert.ToBoolean(results));
        }
Пример #2
0
        ///<summary>
        /// A simple factory method to create a new <see cref="FrmType"/> instance.
        ///</summary>
        ///<param name="_id"></param>
        ///<param name="_description"></param>
        ///<param name="_status"></param>
        public static FrmType CreateFrmType(System.Decimal _id, System.String _description, System.Boolean _status)
        {
            FrmType newFrmType = new FrmType();

            newFrmType.Id          = _id;
            newFrmType.Description = _description;
            newFrmType.Status      = _status;
            return(newFrmType);
        }
Пример #3
0
        ///<summary>
        ///  Returns a Typed FrmType Entity
        ///</summary>
        protected virtual FrmType Copy(IDictionary existingCopies)
        {
            if (existingCopies == null)
            {
                // This is the root of the tree to be copied!
                existingCopies = new Hashtable();
            }

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

            existingCopies.Add(this, copy);
            copy.SuppressEntityEvents = true;
            copy.Id          = this.Id;
            copy.OriginalId  = this.OriginalId;
            copy.Description = this.Description;
            copy.Status      = this.Status;


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