Int64 IMDEvaluationSessionCategoryDataAccess.Add(MDEvaluationSessionCategoryEntity mDEvaluationSessionCategoryEntity, DatabaseOperationType option, TransactionRequired reqTran)
        {
            try
            {
                long retValues = -99;

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

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

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

                return(retValues);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
        private void SaveMDEvaluationSessionCategoryEntity()
        {
            if (IsValid)
            {
                try
                {
                    MDEvaluationSessionCategoryEntity mDEvaluationSessionCategoryEntity = BuildMDEvaluationSessionCategoryEntity();

                    Int64 result = -1;

                    if (mDEvaluationSessionCategoryEntity.IsNew)
                    {
                        result = FCCMDEvaluationSessionCategory.GetFacadeCreate().Add(mDEvaluationSessionCategoryEntity, DatabaseOperationType.Add, TransactionRequired.No);
                    }
                    else
                    {
                        String filterExpression = SqlExpressionBuilder.PrepareFilterExpression(MDEvaluationSessionCategoryEntity.FLD_NAME_SessionCategoryID, mDEvaluationSessionCategoryEntity.SessionCategoryID.ToString(), SQLMatchType.Equal);
                        result = FCCMDEvaluationSessionCategory.GetFacadeCreate().Update(mDEvaluationSessionCategoryEntity, filterExpression, DatabaseOperationType.Update, TransactionRequired.No);
                    }

                    if (result > 0)
                    {
                        _SessionCategoryID = 0;
                        _MDEvaluationSessionCategoryEntity = new MDEvaluationSessionCategoryEntity();
                        PrepareInitialView();
                        BindMDEvaluationSessionCategoryList();

                        if (mDEvaluationSessionCategoryEntity.IsNew)
                        {
                            MiscUtil.ShowMessage(lblMessage, "Evaluation Session Category Information has been added successfully.", false);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Evaluation Session Category Information has been updated successfully.", false);
                        }
                    }
                    else
                    {
                        if (mDEvaluationSessionCategoryEntity.IsNew)
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to add Evaluation Session Category Information.", false);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to update Evaluation Session Category Information.", false);
                        }
                    }
                }
                catch (Exception ex)
                {
                    MiscUtil.ShowMessage(lblMessage, ex.Message, true);
                }
            }
        }
        private MDEvaluationSessionCategoryEntity BuildMDEvaluationSessionCategoryEntity()
        {
            MDEvaluationSessionCategoryEntity mDEvaluationSessionCategoryEntity = CurrentMDEvaluationSessionCategoryEntity;

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


            return(mDEvaluationSessionCategoryEntity);
        }
        private Int64 UpdateTran(MDEvaluationSessionCategoryEntity mDEvaluationSessionCategoryEntity, String filterExpression, DatabaseOperationType option)
        {
            long         returnCode = -99;
            const string SP         = "dbo.MDEvaluationSessionCategory_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, "@SessionCategoryID", DbType.Int64, mDEvaluationSessionCategoryEntity.SessionCategoryID);
                db.AddInParameter(cmd, "@Name", DbType.String, mDEvaluationSessionCategoryEntity.Name);
                db.AddInParameter(cmd, "@Description", DbType.String, mDEvaluationSessionCategoryEntity.Description);
                db.AddInParameter(cmd, "@IsRemoved", DbType.Boolean, mDEvaluationSessionCategoryEntity.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 lvMDEvaluationSessionCategory_ItemCommand(object sender, ListViewCommandEventArgs e)
        {
            Int64 SessionCategoryID;

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

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

                    PrepareEditView();

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

                        String fe = SqlExpressionBuilder.PrepareFilterExpression(MDEvaluationSessionCategoryEntity.FLD_NAME_SessionCategoryID, SessionCategoryID.ToString(), SQLMatchType.Equal);

                        MDEvaluationSessionCategoryEntity mDEvaluationSessionCategoryEntity = new MDEvaluationSessionCategoryEntity();


                        result = FCCMDEvaluationSessionCategory.GetFacadeCreate().Delete(mDEvaluationSessionCategoryEntity, fe, DatabaseOperationType.Delete, TransactionRequired.No);

                        if (result == 0)
                        {
                            _SessionCategoryID = 0;
                            _MDEvaluationSessionCategoryEntity = new MDEvaluationSessionCategoryEntity();
                            PrepareInitialView();
                            BindMDEvaluationSessionCategoryList();

                            MiscUtil.ShowMessage(lblMessage, "Evaluation Session Category has been successfully deleted.", true);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to delete Evaluation Session Category.", true);
                        }
                    }
                    catch (Exception ex)
                    {
                        MiscUtil.ShowMessage(lblMessage, ex.Message, true);
                    }
                }
            }
        }
        private void PrepareEditView()
        {
            MDEvaluationSessionCategoryEntity mDEvaluationSessionCategoryEntity = CurrentMDEvaluationSessionCategoryEntity;


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

                btnSubmit.Text    = "Update";
                btnAddNew.Visible = true;
            }
        }
        private Int64 Update(MDEvaluationSessionCategoryEntity mDEvaluationSessionCategoryEntity, String filterExpression, DatabaseOperationType option)
        {
            long         returnCode = -99;
            const string SP         = "dbo.MDEvaluationSessionCategory_SET";

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

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

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

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

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

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

            return(returnCode);
        }
 protected void btnAddNew_Click(object sender, EventArgs e)
 {
     _SessionCategoryID = 0;
     _MDEvaluationSessionCategoryEntity = new MDEvaluationSessionCategoryEntity();
     PrepareInitialView();
 }
Пример #9
0
 Int64 IMDEvaluationSessionCategoryFacade.Delete(MDEvaluationSessionCategoryEntity mDEvaluationSessionCategoryEntity, String filterExpression, DatabaseOperationType option, TransactionRequired reqTran)
 {
     return(DataAccessFactory.CreateMDEvaluationSessionCategoryDataAccess().Delete(mDEvaluationSessionCategoryEntity, filterExpression, option, reqTran));
 }
Пример #10
0
 Int64 IMDEvaluationSessionCategoryFacade.Add(MDEvaluationSessionCategoryEntity mDEvaluationSessionCategoryEntity, DatabaseOperationType option, TransactionRequired reqTran)
 {
     return(DataAccessFactory.CreateMDEvaluationSessionCategoryDataAccess().Add(mDEvaluationSessionCategoryEntity, option, reqTran));
 }