Ejemplo n.º 1
0
        Int64 ICMNMDEventCategoryDataAccess.Add(CMNMDEventCategoryEntity cMNMDEventCategoryEntity, DatabaseOperationType option, TransactionRequired reqTran)
        {
            try
            {
                long retValues = -99;

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

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

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

                return(retValues);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
        private void SaveCMNMDEventCategoryEntity()
        {
            if (IsValid)
            {
                try
                {
                    CMNMDEventCategoryEntity cMNMDEventCategoryEntity = BuildCMNMDEventCategoryEntity();

                    Int64 result = -1;

                    if (cMNMDEventCategoryEntity.IsNew)
                    {
                        result = FCCCMNMDEventCategory.GetFacadeCreate().Add(cMNMDEventCategoryEntity, DatabaseOperationType.Add, TransactionRequired.No);
                    }
                    else
                    {
                        String filterExpression = SqlExpressionBuilder.PrepareFilterExpression(CMNMDEventCategoryEntity.FLD_NAME_EventCategoryID, cMNMDEventCategoryEntity.EventCategoryID.ToString(), SQLMatchType.Equal);
                        result = FCCCMNMDEventCategory.GetFacadeCreate().Update(cMNMDEventCategoryEntity, filterExpression, DatabaseOperationType.Update, TransactionRequired.No);
                    }

                    if (result > 0)
                    {
                        _EventCategoryID          = 0;
                        _CMNMDEventCategoryEntity = new CMNMDEventCategoryEntity();
                        PrepareInitialView();
                        BindCMNMDEventCategoryList();

                        if (cMNMDEventCategoryEntity.IsNew)
                        {
                            MiscUtil.ShowMessage(lblMessage, "C MNEvent Category Information has been added successfully.", false);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "C MNEvent Category Information has been updated successfully.", false);
                        }
                    }
                    else
                    {
                        if (cMNMDEventCategoryEntity.IsNew)
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to add C MNEvent Category Information.", false);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to update C MNEvent Category Information.", false);
                        }
                    }
                }
                catch (Exception ex)
                {
                    MiscUtil.ShowMessage(lblMessage, ex.Message, true);
                }
            }
        }
Ejemplo n.º 3
0
        private Int64 UpdateTran(CMNMDEventCategoryEntity cMNMDEventCategoryEntity, String filterExpression, DatabaseOperationType option)
        {
            long         returnCode = -99;
            const string SP         = "dbo.CMNMDEventCategory_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, "@EventCategoryID", DbType.Int64, cMNMDEventCategoryEntity.EventCategoryID);
                db.AddInParameter(cmd, "@EventIdentityCategoryID", DbType.Int64, cMNMDEventCategoryEntity.EventIdentityCategoryID);
                db.AddInParameter(cmd, "@Name", DbType.String, cMNMDEventCategoryEntity.Name);
                db.AddInParameter(cmd, "@Description", DbType.String, cMNMDEventCategoryEntity.Description);
                db.AddInParameter(cmd, "@IsRemoved", DbType.Boolean, cMNMDEventCategoryEntity.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 lvCMNMDEventCategory_ItemCommand(object sender, ListViewCommandEventArgs e)
        {
            Int64 EventCategoryID;

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

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

                    PrepareEditView();

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

                        String fe = SqlExpressionBuilder.PrepareFilterExpression(CMNMDEventCategoryEntity.FLD_NAME_EventCategoryID, EventCategoryID.ToString(), SQLMatchType.Equal);

                        CMNMDEventCategoryEntity cMNMDEventCategoryEntity = new CMNMDEventCategoryEntity();


                        result = FCCCMNMDEventCategory.GetFacadeCreate().Delete(cMNMDEventCategoryEntity, fe, DatabaseOperationType.Delete, TransactionRequired.No);

                        if (result == 0)
                        {
                            _EventCategoryID          = 0;
                            _CMNMDEventCategoryEntity = new CMNMDEventCategoryEntity();
                            PrepareInitialView();
                            BindCMNMDEventCategoryList();

                            MiscUtil.ShowMessage(lblMessage, "C MNEvent Category has been successfully deleted.", true);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to delete C MNEvent Category.", true);
                        }
                    }
                    catch (Exception ex)
                    {
                        MiscUtil.ShowMessage(lblMessage, ex.Message, true);
                    }
                }
            }
        }
Ejemplo n.º 5
0
        private Int64 Update(CMNMDEventCategoryEntity cMNMDEventCategoryEntity, String filterExpression, DatabaseOperationType option)
        {
            long         returnCode = -99;
            const string SP         = "dbo.CMNMDEventCategory_SET";

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

                Database.AddInParameter(cmd, "@EventCategoryID", DbType.Int64, cMNMDEventCategoryEntity.EventCategoryID);
                Database.AddInParameter(cmd, "@EventIdentityCategoryID", DbType.Int64, cMNMDEventCategoryEntity.EventIdentityCategoryID);
                Database.AddInParameter(cmd, "@Name", DbType.String, cMNMDEventCategoryEntity.Name);
                Database.AddInParameter(cmd, "@Description", DbType.String, cMNMDEventCategoryEntity.Description);
                Database.AddInParameter(cmd, "@IsRemoved", DbType.Boolean, cMNMDEventCategoryEntity.IsRemoved);

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

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

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

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

            return(returnCode);
        }
        private void PrepareEditView()
        {
            CMNMDEventCategoryEntity cMNMDEventCategoryEntity = CurrentCMNMDEventCategoryEntity;


            if (!cMNMDEventCategoryEntity.IsNew)
            {
                if (ddlEventIdentityCategoryID.Items.Count > 0 && cMNMDEventCategoryEntity.EventIdentityCategoryID != null)
                {
                    ddlEventIdentityCategoryID.SelectedValue = cMNMDEventCategoryEntity.EventIdentityCategoryID.ToString();
                }

                txtName.Text         = cMNMDEventCategoryEntity.Name.ToString();
                txtDescription.Text  = cMNMDEventCategoryEntity.Description.ToString();
                chkIsRemoved.Checked = cMNMDEventCategoryEntity.IsRemoved;

                btnSubmit.Text    = "Update";
                btnAddNew.Visible = true;
            }
        }
        private CMNMDEventCategoryEntity BuildCMNMDEventCategoryEntity()
        {
            CMNMDEventCategoryEntity cMNMDEventCategoryEntity = CurrentCMNMDEventCategoryEntity;

            if (ddlEventIdentityCategoryID.Items.Count > 0)
            {
                if (ddlEventIdentityCategoryID.SelectedValue == "0")
                {
                }
                else
                {
                    cMNMDEventCategoryEntity.EventIdentityCategoryID = Int64.Parse(ddlEventIdentityCategoryID.SelectedValue);
                }
            }

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


            return(cMNMDEventCategoryEntity);
        }
 protected void btnAddNew_Click(object sender, EventArgs e)
 {
     _EventCategoryID          = 0;
     _CMNMDEventCategoryEntity = new CMNMDEventCategoryEntity();
     PrepareInitialView();
 }
 Int64 ICMNMDEventCategoryFacade.Delete(CMNMDEventCategoryEntity cMNMDEventCategoryEntity, String filterExpression, DatabaseOperationType option, TransactionRequired reqTran)
 {
     return(DataAccessFactory.CreateCMNMDEventCategoryDataAccess().Delete(cMNMDEventCategoryEntity, filterExpression, option, reqTran));
 }
 Int64 ICMNMDEventCategoryFacade.Add(CMNMDEventCategoryEntity cMNMDEventCategoryEntity, DatabaseOperationType option, TransactionRequired reqTran)
 {
     return(DataAccessFactory.CreateCMNMDEventCategoryDataAccess().Add(cMNMDEventCategoryEntity, option, reqTran));
 }