Int64 IBDMDProcessCategoryDataAccess.Add(BDMDProcessCategoryEntity bDMDProcessCategoryEntity, DatabaseOperationType option, TransactionRequired reqTran)
        {
            try
            {
                long retValues = -99;

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

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

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

                return(retValues);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
        private void SaveBDMDProcessCategoryEntity()
        {
            if (IsValid)
            {
                try
                {
                    BDMDProcessCategoryEntity bDMDProcessCategoryEntity = BuildBDMDProcessCategoryEntity();

                    Int64 result = -1;

                    if (bDMDProcessCategoryEntity.IsNew)
                    {
                        result = FCCBDMDProcessCategory.GetFacadeCreate().Add(bDMDProcessCategoryEntity, DatabaseOperationType.Add, TransactionRequired.No);
                    }
                    else
                    {
                        String filterExpression = SqlExpressionBuilder.PrepareFilterExpression(BDMDProcessCategoryEntity.FLD_NAME_ProcessCategoryID, bDMDProcessCategoryEntity.ProcessCategoryID.ToString(), SQLMatchType.Equal);
                        result = FCCBDMDProcessCategory.GetFacadeCreate().Update(bDMDProcessCategoryEntity, filterExpression, DatabaseOperationType.Update, TransactionRequired.No);
                    }

                    if (result > 0)
                    {
                        _ProcessCategoryID         = 0;
                        _BDMDProcessCategoryEntity = new BDMDProcessCategoryEntity();
                        PrepareInitialView();
                        BindBDMDProcessCategoryList();

                        if (bDMDProcessCategoryEntity.IsNew)
                        {
                            MiscUtil.ShowMessage(lblMessage, "Process Category Information has been added successfully.", false);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Process Category Information has been updated successfully.", false);
                        }
                    }
                    else
                    {
                        if (bDMDProcessCategoryEntity.IsNew)
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to add Process Category Information.", false);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to update Process Category Information.", false);
                        }
                    }
                }
                catch (Exception ex)
                {
                    MiscUtil.ShowMessage(lblMessage, ex.Message, true);
                }
            }
        }
        private BDMDProcessCategoryEntity BuildBDMDProcessCategoryEntity()
        {
            BDMDProcessCategoryEntity bDMDProcessCategoryEntity = CurrentBDMDProcessCategoryEntity;

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


            return(bDMDProcessCategoryEntity);
        }
        private Int64 UpdateTran(BDMDProcessCategoryEntity bDMDProcessCategoryEntity, String filterExpression, DatabaseOperationType option)
        {
            long         returnCode = -99;
            const string SP         = "dbo.BDMDProcessCategory_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, "@ProcessCategoryID", DbType.Int64, bDMDProcessCategoryEntity.ProcessCategoryID);
                db.AddInParameter(cmd, "@Name", DbType.String, bDMDProcessCategoryEntity.Name);
                db.AddInParameter(cmd, "@Description", DbType.String, bDMDProcessCategoryEntity.Description);
                db.AddInParameter(cmd, "@IsRemoved", DbType.Boolean, bDMDProcessCategoryEntity.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);
        }
        private void PrepareEditView()
        {
            BDMDProcessCategoryEntity bDMDProcessCategoryEntity = CurrentBDMDProcessCategoryEntity;


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

                btnSubmit.Text    = "Update";
                btnAddNew.Visible = true;
            }
        }
        protected void lvBDMDProcessCategory_ItemCommand(object sender, ListViewCommandEventArgs e)
        {
            Int64 ProcessCategoryID;

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

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

                    PrepareEditView();
                }

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

                        String fe = SqlExpressionBuilder.PrepareFilterExpression(BDMDProcessCategoryEntity.FLD_NAME_ProcessCategoryID, ProcessCategoryID.ToString(), SQLMatchType.Equal);

                        BDMDProcessCategoryEntity bDMDProcessCategoryEntity = new BDMDProcessCategoryEntity();

                        result = FCCBDMDProcessCategory.GetFacadeCreate().Delete(bDMDProcessCategoryEntity, fe, DatabaseOperationType.Delete, TransactionRequired.No);

                        if (result == 0)
                        {
                            _ProcessCategoryID         = 0;
                            _BDMDProcessCategoryEntity = new BDMDProcessCategoryEntity();
                            PrepareInitialView();
                            BindBDMDProcessCategoryList();

                            MiscUtil.ShowMessage(lblMessage, "Process Category has been successfully deleted.", true);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to delete Process Category.", true);
                        }
                    }
                    catch (Exception ex)
                    {
                        MiscUtil.ShowMessage(lblMessage, ex.Message, true);
                    }
                }
            }
        }
        private Int64 Update(BDMDProcessCategoryEntity bDMDProcessCategoryEntity, String filterExpression, DatabaseOperationType option)
        {
            long         returnCode = -99;
            const string SP         = "dbo.BDMDProcessCategory_SET";

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

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

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

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

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

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

            return(returnCode);
        }
 Int64 IBDMDProcessCategoryFacade.Delete(BDMDProcessCategoryEntity bDMDProcessCategoryEntity, String filterExpression, DatabaseOperationType option, TransactionRequired reqTran)
 {
     return(DataAccessFactory.CreateBDMDProcessCategoryDataAccess().Delete(bDMDProcessCategoryEntity, filterExpression, option, reqTran));
 }
 Int64 IBDMDProcessCategoryFacade.Add(BDMDProcessCategoryEntity bDMDProcessCategoryEntity, DatabaseOperationType option, TransactionRequired reqTran)
 {
     return(DataAccessFactory.CreateBDMDProcessCategoryDataAccess().Add(bDMDProcessCategoryEntity, option, reqTran));
 }
 protected void btnAddNew_Click(object sender, EventArgs e)
 {
     _ProcessCategoryID         = 0;
     _BDMDProcessCategoryEntity = new BDMDProcessCategoryEntity();
     PrepareInitialView();
 }