コード例 #1
0
        Int64 IMDDocumentStorageTypeDataAccess.Add(MDDocumentStorageTypeEntity mDDocumentStorageTypeEntity, DatabaseOperationType option, TransactionRequired reqTran)
        {
            try
            {
                long retValues = -99;

                switch (reqTran)
                {
                case TransactionRequired.No:
                {
                    retValues = Add(mDDocumentStorageTypeEntity, option);
                    break;
                }

                case TransactionRequired.Yes:
                {
                    retValues = AddTran(mDDocumentStorageTypeEntity, option);
                    break;
                }

                default:
                {
                    retValues = -99;
                    break;
                }
                }

                return(retValues);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
コード例 #2
0
        private MDDocumentStorageTypeEntity BuildMDDocumentStorageTypeEntity()
        {
            MDDocumentStorageTypeEntity mDDocumentStorageTypeEntity = CurrentMDDocumentStorageTypeEntity;

            mDDocumentStorageTypeEntity.Name      = txtName.Text.Trim();
            mDDocumentStorageTypeEntity.IsRemoved = chkIsRemoved.Checked;


            return(mDDocumentStorageTypeEntity);
        }
コード例 #3
0
        private void SaveMDDocumentStorageTypeEntity()
        {
            if (IsValid)
            {
                try
                {
                    MDDocumentStorageTypeEntity mDDocumentStorageTypeEntity = BuildMDDocumentStorageTypeEntity();

                    Int64 result = -1;

                    if (mDDocumentStorageTypeEntity.IsNew)
                    {
                        result = FCCMDDocumentStorageType.GetFacadeCreate().Add(mDDocumentStorageTypeEntity, DatabaseOperationType.Add, TransactionRequired.No);
                    }
                    else
                    {
                        String filterExpression = SqlExpressionBuilder.PrepareFilterExpression(MDDocumentStorageTypeEntity.FLD_NAME_DocumentStorageTypeID, mDDocumentStorageTypeEntity.DocumentStorageTypeID.ToString(), SQLMatchType.Equal);
                        result = FCCMDDocumentStorageType.GetFacadeCreate().Update(mDDocumentStorageTypeEntity, filterExpression, DatabaseOperationType.Update, TransactionRequired.No);
                    }

                    if (result > 0)
                    {
                        _DocumentStorageTypeID       = 0;
                        _MDDocumentStorageTypeEntity = new MDDocumentStorageTypeEntity();
                        PrepareInitialView();
                        BindMDDocumentStorageTypeList();

                        if (mDDocumentStorageTypeEntity.IsNew)
                        {
                            MiscUtil.ShowMessage(lblMessage, "Document Storage Type Information has been added successfully.", false);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Document Storage Type Information has been updated successfully.", false);
                        }
                    }
                    else
                    {
                        if (mDDocumentStorageTypeEntity.IsNew)
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to add Document Storage Type Information.", false);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to update Document Storage Type Information.", false);
                        }
                    }
                }
                catch (Exception ex)
                {
                    MiscUtil.ShowMessage(lblMessage, ex.Message, true);
                }
            }
        }
コード例 #4
0
        private Int64 UpdateTran(MDDocumentStorageTypeEntity mDDocumentStorageTypeEntity, String filterExpression, DatabaseOperationType option)
        {
            long         returnCode = -99;
            const string SP         = "dbo.MDDocumentStorageType_SET";

            Database db = DatabaseFactory.CreateDatabase();

            using (DbCommand cmd = db.GetStoredProcCommand(SP))
            {
                AddOptionParameter(cmd, option, db);
                AddOutputParameter(cmd, db);
                AddFilterExpressionParameter(cmd, filterExpression, db);

                db.AddInParameter(cmd, "@DocumentStorageTypeID", DbType.Int64, mDDocumentStorageTypeEntity.DocumentStorageTypeID);
                db.AddInParameter(cmd, "@Name", DbType.String, mDDocumentStorageTypeEntity.Name);
                db.AddInParameter(cmd, "@IsRemoved", DbType.Boolean, mDDocumentStorageTypeEntity.IsRemoved);

                DbConnection connection = db.CreateConnection();
                connection.Open();
                DbTransaction transaction = connection.BeginTransaction();

                try
                {
                    using (IDataReader reader = db.ExecuteReader(cmd, transaction))
                    {
                        returnCode = GetReturnCodeFromParameter(cmd);
                    }

                    if (returnCode > 0)
                    {
                        transaction.Commit();
                    }
                    else
                    {
                        throw new ArgumentException("Error Code." + returnCode.ToString());
                    }
                }
                catch (Exception ex)
                {
                    transaction.Rollback();
                    throw ex;
                }
                finally
                {
                    transaction.Dispose();
                    connection.Close();
                    connection = null;
                }
            }

            return(returnCode);
        }
コード例 #5
0
        protected void lvMDDocumentStorageType_ItemCommand(object sender, ListViewCommandEventArgs e)
        {
            Int64 DocumentStorageTypeID;

            Int64.TryParse(e.CommandArgument.ToString(), out DocumentStorageTypeID);

            if (DocumentStorageTypeID > 0)
            {
                if (string.Equals(e.CommandName, "EditItem"))
                {
                    _DocumentStorageTypeID = DocumentStorageTypeID;

                    PrepareEditView();

                    cpeEditor.Collapsed   = false;
                    cpeEditor.ClientState = "false";
                }
                else if (string.Equals(e.CommandName, "DeleteItem"))
                {
                    try
                    {
                        Int64 result = -1;

                        String fe = SqlExpressionBuilder.PrepareFilterExpression(MDDocumentStorageTypeEntity.FLD_NAME_DocumentStorageTypeID, DocumentStorageTypeID.ToString(), SQLMatchType.Equal);

                        MDDocumentStorageTypeEntity mDDocumentStorageTypeEntity = new MDDocumentStorageTypeEntity();


                        result = FCCMDDocumentStorageType.GetFacadeCreate().Delete(mDDocumentStorageTypeEntity, fe, DatabaseOperationType.Delete, TransactionRequired.No);

                        if (result == 0)
                        {
                            _DocumentStorageTypeID       = 0;
                            _MDDocumentStorageTypeEntity = new MDDocumentStorageTypeEntity();
                            PrepareInitialView();
                            BindMDDocumentStorageTypeList();

                            MiscUtil.ShowMessage(lblMessage, "Document Storage Type has been successfully deleted.", true);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to delete Document Storage Type.", true);
                        }
                    }
                    catch (Exception ex)
                    {
                        MiscUtil.ShowMessage(lblMessage, ex.Message, true);
                    }
                }
            }
        }
コード例 #6
0
        private void PrepareEditView()
        {
            MDDocumentStorageTypeEntity mDDocumentStorageTypeEntity = CurrentMDDocumentStorageTypeEntity;


            if (!mDDocumentStorageTypeEntity.IsNew)
            {
                txtName.Text         = mDDocumentStorageTypeEntity.Name.ToString();
                chkIsRemoved.Checked = mDDocumentStorageTypeEntity.IsRemoved;

                btnSubmit.Text    = "Update";
                btnAddNew.Visible = true;
            }
        }
コード例 #7
0
        private Int64 Update(MDDocumentStorageTypeEntity mDDocumentStorageTypeEntity, String filterExpression, DatabaseOperationType option)
        {
            long         returnCode = -99;
            const string SP         = "dbo.MDDocumentStorageType_SET";

            using (DbCommand cmd = Database.GetStoredProcCommand(SP))
            {
                AddOptionParameter(cmd, option);
                AddOutputParameter(cmd);
                AddFilterExpressionParameter(cmd, filterExpression);

                Database.AddInParameter(cmd, "@DocumentStorageTypeID", DbType.Int64, mDDocumentStorageTypeEntity.DocumentStorageTypeID);
                Database.AddInParameter(cmd, "@Name", DbType.String, mDDocumentStorageTypeEntity.Name);
                Database.AddInParameter(cmd, "@IsRemoved", DbType.Boolean, mDDocumentStorageTypeEntity.IsRemoved);

                using (IDataReader reader = Database.ExecuteReader(cmd))
                {
                    returnCode = GetReturnCodeFromParameter(cmd);

                    switch (returnCode)
                    {
                    case SqlConstants.DB_STATUS_CODE_DATAALREADYEXIST:
                    {
                        throw new ArgumentException("MDDocumentStorageTypeEntity already exists. Please specify another MDDocumentStorageTypeEntity.");
                    }

                    case SqlConstants.DB_STATUS_CODE_DATAUPDATEDFROMOTHERSESSION:
                    {
                        throw new ArgumentException("MDDocumentStorageTypeEntity data already updated from different session.");
                    }

                    case SqlConstants.DB_STATUS_CODE_FAIL_OPERATION:
                    {
                        throw new ArgumentException("MDDocumentStorageTypeEntity already exists. Please specify another MDDocumentStorageTypeEntity.");
                    }
                    }
                }
            }

            return(returnCode);
        }
コード例 #8
0
 protected void btnAddNew_Click(object sender, EventArgs e)
 {
     _DocumentStorageTypeID       = 0;
     _MDDocumentStorageTypeEntity = new MDDocumentStorageTypeEntity();
     PrepareInitialView();
 }
コード例 #9
0
 Int64 IMDDocumentStorageTypeFacade.Delete(MDDocumentStorageTypeEntity mDDocumentStorageTypeEntity, String filterExpression, DatabaseOperationType option, TransactionRequired reqTran)
 {
     return(DataAccessFactory.CreateMDDocumentStorageTypeDataAccess().Delete(mDDocumentStorageTypeEntity, filterExpression, option, reqTran));
 }
コード例 #10
0
 Int64 IMDDocumentStorageTypeFacade.Add(MDDocumentStorageTypeEntity mDDocumentStorageTypeEntity, DatabaseOperationType option, TransactionRequired reqTran)
 {
     return(DataAccessFactory.CreateMDDocumentStorageTypeDataAccess().Add(mDDocumentStorageTypeEntity, option, reqTran));
 }