Exemple #1
0
        Int64 IMDDMSOwnerTypeDataAccess.Delete(MDDMSOwnerTypeEntity mDDMSOwnerTypeEntity, String filterExpression, DatabaseOperationType option, TransactionRequired reqTran)
        {
            try
            {
                long retValues = -99;

                switch (reqTran)
                {
                case TransactionRequired.No:
                {
                    retValues = Delete(mDDMSOwnerTypeEntity, filterExpression, option);
                    break;
                }

                case TransactionRequired.Yes:
                {
                    retValues = DeleteTran(mDDMSOwnerTypeEntity, filterExpression, option);
                    break;
                }

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

                return(retValues);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Exemple #2
0
        Int64 IMDDMSOwnerTypeDataAccess.Add(MDDMSOwnerTypeEntity mDDMSOwnerTypeEntity, DatabaseOperationType option, TransactionRequired reqTran)
        {
            try
            {
                long retValues = -99;

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

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

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

                return(retValues);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
        private void SaveMDDMSOwnerTypeEntity()
        {
            if (IsValid)
            {
                try
                {
                    MDDMSOwnerTypeEntity mDDMSOwnerTypeEntity = BuildMDDMSOwnerTypeEntity();

                    Int64 result = -1;

                    if (mDDMSOwnerTypeEntity.IsNew)
                    {
                        result = FCCMDDMSOwnerType.GetFacadeCreate().Add(mDDMSOwnerTypeEntity, DatabaseOperationType.Add, TransactionRequired.No);
                    }
                    else
                    {
                        String filterExpression = SqlExpressionBuilder.PrepareFilterExpression(MDDMSOwnerTypeEntity.FLD_NAME_OwnerTypeID, mDDMSOwnerTypeEntity.OwnerTypeID.ToString(), SQLMatchType.Equal);
                        result = FCCMDDMSOwnerType.GetFacadeCreate().Update(mDDMSOwnerTypeEntity, filterExpression, DatabaseOperationType.Update, TransactionRequired.No);
                    }

                    if (result > 0)
                    {
                        _OwnerTypeID          = 0;
                        _MDDMSOwnerTypeEntity = new MDDMSOwnerTypeEntity();
                        PrepareInitialView();
                        BindMDDMSOwnerTypeList();

                        if (mDDMSOwnerTypeEntity.IsNew)
                        {
                            MiscUtil.ShowMessage(lblMessage, "D MSOwner Type Information has been added successfully.", false);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "D MSOwner Type Information has been updated successfully.", false);
                        }
                    }
                    else
                    {
                        if (mDDMSOwnerTypeEntity.IsNew)
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to add D MSOwner Type Information.", false);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to update D MSOwner Type Information.", false);
                        }
                    }
                }
                catch (Exception ex)
                {
                    MiscUtil.ShowMessage(lblMessage, ex.Message, true);
                }
            }
        }
        private MDDMSOwnerTypeEntity BuildMDDMSOwnerTypeEntity()
        {
            MDDMSOwnerTypeEntity mDDMSOwnerTypeEntity = CurrentMDDMSOwnerTypeEntity;

            mDDMSOwnerTypeEntity.Name        = txtName.Text.Trim();
            mDDMSOwnerTypeEntity.Description = txtDescription.Text.Trim();
            mDDMSOwnerTypeEntity.IsRemoved   = chkIsRemoved.Checked;


            return(mDDMSOwnerTypeEntity);
        }
Exemple #5
0
        private Int64 UpdateTran(MDDMSOwnerTypeEntity mDDMSOwnerTypeEntity, String filterExpression, DatabaseOperationType option)
        {
            long         returnCode = -99;
            const string SP         = "dbo.MDDMSOwnerType_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, "@OwnerTypeID", DbType.Int64, mDDMSOwnerTypeEntity.OwnerTypeID);
                db.AddInParameter(cmd, "@Name", DbType.String, mDDMSOwnerTypeEntity.Name);
                db.AddInParameter(cmd, "@Description", DbType.String, mDDMSOwnerTypeEntity.Description);
                db.AddInParameter(cmd, "@IsRemoved", DbType.Boolean, mDDMSOwnerTypeEntity.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);
        }
        protected void lvMDDMSOwnerType_ItemCommand(object sender, ListViewCommandEventArgs e)
        {
            Int64 OwnerTypeID;

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

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

                    PrepareEditView();

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

                        String fe = SqlExpressionBuilder.PrepareFilterExpression(MDDMSOwnerTypeEntity.FLD_NAME_OwnerTypeID, OwnerTypeID.ToString(), SQLMatchType.Equal);

                        MDDMSOwnerTypeEntity mDDMSOwnerTypeEntity = new MDDMSOwnerTypeEntity();


                        result = FCCMDDMSOwnerType.GetFacadeCreate().Delete(mDDMSOwnerTypeEntity, fe, DatabaseOperationType.Delete, TransactionRequired.No);

                        if (result == 0)
                        {
                            _OwnerTypeID          = 0;
                            _MDDMSOwnerTypeEntity = new MDDMSOwnerTypeEntity();
                            PrepareInitialView();
                            BindMDDMSOwnerTypeList();

                            MiscUtil.ShowMessage(lblMessage, "D MSOwner Type has been successfully deleted.", true);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to delete D MSOwner Type.", true);
                        }
                    }
                    catch (Exception ex)
                    {
                        MiscUtil.ShowMessage(lblMessage, ex.Message, true);
                    }
                }
            }
        }
        private void PrepareEditView()
        {
            MDDMSOwnerTypeEntity mDDMSOwnerTypeEntity = CurrentMDDMSOwnerTypeEntity;


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

                btnSubmit.Text    = "Update";
                btnAddNew.Visible = true;
            }
        }
Exemple #8
0
        private Int64 Update(MDDMSOwnerTypeEntity mDDMSOwnerTypeEntity, String filterExpression, DatabaseOperationType option)
        {
            long         returnCode = -99;
            const string SP         = "dbo.MDDMSOwnerType_SET";

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

                Database.AddInParameter(cmd, "@OwnerTypeID", DbType.Int64, mDDMSOwnerTypeEntity.OwnerTypeID);
                Database.AddInParameter(cmd, "@Name", DbType.String, mDDMSOwnerTypeEntity.Name);
                Database.AddInParameter(cmd, "@Description", DbType.String, mDDMSOwnerTypeEntity.Description);
                Database.AddInParameter(cmd, "@IsRemoved", DbType.Boolean, mDDMSOwnerTypeEntity.IsRemoved);

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

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

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

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

            return(returnCode);
        }
 Int64 IMDDMSOwnerTypeFacade.Delete(MDDMSOwnerTypeEntity mDDMSOwnerTypeEntity, String filterExpression, DatabaseOperationType option, TransactionRequired reqTran)
 {
     return(DataAccessFactory.CreateMDDMSOwnerTypeDataAccess().Delete(mDDMSOwnerTypeEntity, filterExpression, option, reqTran));
 }
 Int64 IMDDMSOwnerTypeFacade.Add(MDDMSOwnerTypeEntity mDDMSOwnerTypeEntity, DatabaseOperationType option, TransactionRequired reqTran)
 {
     return(DataAccessFactory.CreateMDDMSOwnerTypeDataAccess().Add(mDDMSOwnerTypeEntity, option, reqTran));
 }
 protected void btnAddNew_Click(object sender, EventArgs e)
 {
     _OwnerTypeID          = 0;
     _MDDMSOwnerTypeEntity = new MDDMSOwnerTypeEntity();
     PrepareInitialView();
 }