Beispiel #1
0
        Int64 IMDFloorCategoryDataAccess.Add(MDFloorCategoryEntity mDFloorCategoryEntity, DatabaseOperationType option, TransactionRequired reqTran)
        {
            try
            {
                long retValues = -99;

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

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

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

                return(retValues);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
        private void SaveMDFloorCategoryEntity()
        {
            if (IsValid)
            {
                try
                {
                    MDFloorCategoryEntity mDFloorCategoryEntity = BuildMDFloorCategoryEntity();

                    Int64 result = -1;

                    if (mDFloorCategoryEntity.IsNew)
                    {
                        result = FCCMDFloorCategory.GetFacadeCreate().Add(mDFloorCategoryEntity, DatabaseOperationType.Add, TransactionRequired.No);
                    }
                    else
                    {
                        String filterExpression = SqlExpressionBuilder.PrepareFilterExpression(MDFloorCategoryEntity.FLD_NAME_FloorCategoryID, mDFloorCategoryEntity.FloorCategoryID.ToString(), SQLMatchType.Equal);
                        result = FCCMDFloorCategory.GetFacadeCreate().Update(mDFloorCategoryEntity, filterExpression, DatabaseOperationType.Update, TransactionRequired.No);
                    }

                    if (result > 0)
                    {
                        _FloorCategoryID       = 0;
                        _MDFloorCategoryEntity = new MDFloorCategoryEntity();
                        PrepareInitialView();
                        BindMDFloorCategoryList();

                        if (mDFloorCategoryEntity.IsNew)
                        {
                            MiscUtil.ShowMessage(lblMessage, "Floor Category Information has been added successfully.", false);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Floor Category Information has been updated successfully.", false);
                        }
                    }
                    else
                    {
                        if (mDFloorCategoryEntity.IsNew)
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to add Floor Category Information.", false);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to update Floor Category Information.", false);
                        }
                    }
                }
                catch (Exception ex)
                {
                    MiscUtil.ShowMessage(lblMessage, ex.Message, true);
                }
            }
        }
        private MDFloorCategoryEntity BuildMDFloorCategoryEntity()
        {
            MDFloorCategoryEntity mDFloorCategoryEntity = CurrentMDFloorCategoryEntity;

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


            return(mDFloorCategoryEntity);
        }
Beispiel #4
0
        private Int64 UpdateTran(MDFloorCategoryEntity mDFloorCategoryEntity, String filterExpression, DatabaseOperationType option)
        {
            long         returnCode = -99;
            const string SP         = "dbo.MDFloorCategory_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, "@FloorCategoryID", DbType.Int64, mDFloorCategoryEntity.FloorCategoryID);
                db.AddInParameter(cmd, "@Name", DbType.String, mDFloorCategoryEntity.Name);
                db.AddInParameter(cmd, "@Description", DbType.String, mDFloorCategoryEntity.Description);
                db.AddInParameter(cmd, "@IsRemoved", DbType.Boolean, mDFloorCategoryEntity.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 lvMDFloorCategory_ItemCommand(object sender, ListViewCommandEventArgs e)
        {
            Int64 FloorCategoryID;

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

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

                    PrepareEditView();

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

                        String fe = SqlExpressionBuilder.PrepareFilterExpression(MDFloorCategoryEntity.FLD_NAME_FloorCategoryID, FloorCategoryID.ToString(), SQLMatchType.Equal);

                        MDFloorCategoryEntity mDFloorCategoryEntity = new MDFloorCategoryEntity();


                        result = FCCMDFloorCategory.GetFacadeCreate().Delete(mDFloorCategoryEntity, fe, DatabaseOperationType.Delete, TransactionRequired.No);

                        if (result == 0)
                        {
                            _FloorCategoryID       = 0;
                            _MDFloorCategoryEntity = new MDFloorCategoryEntity();
                            PrepareInitialView();
                            BindMDFloorCategoryList();

                            MiscUtil.ShowMessage(lblMessage, "Floor Category has been successfully deleted.", true);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to delete Floor Category.", true);
                        }
                    }
                    catch (Exception ex)
                    {
                        MiscUtil.ShowMessage(lblMessage, ex.Message, true);
                    }
                }
            }
        }
        private void PrepareEditView()
        {
            MDFloorCategoryEntity mDFloorCategoryEntity = CurrentMDFloorCategoryEntity;


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

                btnSubmit.Text    = "Update";
                btnAddNew.Visible = true;
            }
        }
Beispiel #7
0
        private Int64 Update(MDFloorCategoryEntity mDFloorCategoryEntity, String filterExpression, DatabaseOperationType option)
        {
            long         returnCode = -99;
            const string SP         = "dbo.MDFloorCategory_SET";

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

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

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

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

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

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

            return(returnCode);
        }
Beispiel #8
0
 Int64 IMDFloorCategoryFacade.Delete(MDFloorCategoryEntity mDFloorCategoryEntity, String filterExpression, DatabaseOperationType option, TransactionRequired reqTran)
 {
     return(DataAccessFactory.CreateMDFloorCategoryDataAccess().Delete(mDFloorCategoryEntity, filterExpression, option, reqTran));
 }
Beispiel #9
0
 Int64 IMDFloorCategoryFacade.Add(MDFloorCategoryEntity mDFloorCategoryEntity, DatabaseOperationType option, TransactionRequired reqTran)
 {
     return(DataAccessFactory.CreateMDFloorCategoryDataAccess().Add(mDFloorCategoryEntity, option, reqTran));
 }
 protected void btnAddNew_Click(object sender, EventArgs e)
 {
     _FloorCategoryID       = 0;
     _MDFloorCategoryEntity = new MDFloorCategoryEntity();
     PrepareInitialView();
 }