Int64 ICRMMDLandOwnerTypeDataAccess.Add(CRMMDLandOwnerTypeEntity cRMMDLandOwnerTypeEntity, DatabaseOperationType option, TransactionRequired reqTran)
        {
            try
            {
                long retValues = -99;

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

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

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

                return(retValues);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
        private void SaveCRMMDLandOwnerTypeEntity()
        {
            if (IsValid)
            {
                try
                {
                    CRMMDLandOwnerTypeEntity cRMMDLandOwnerTypeEntity = BuildCRMMDLandOwnerTypeEntity();

                    Int64 result = -1;

                    if (cRMMDLandOwnerTypeEntity.IsNew)
                    {
                        result = FCCCRMMDLandOwnerType.GetFacadeCreate().Add(cRMMDLandOwnerTypeEntity, DatabaseOperationType.Add, TransactionRequired.No);
                    }
                    else
                    {
                        String filterExpression = SqlExpressionBuilder.PrepareFilterExpression(CRMMDLandOwnerTypeEntity.FLD_NAME_LandOwnerTypeID, cRMMDLandOwnerTypeEntity.LandOwnerTypeID.ToString(), SQLMatchType.Equal);
                        result = FCCCRMMDLandOwnerType.GetFacadeCreate().Update(cRMMDLandOwnerTypeEntity, filterExpression, DatabaseOperationType.Update, TransactionRequired.No);
                    }

                    if (result > 0)
                    {
                        _LandOwnerTypeID          = 0;
                        _CRMMDLandOwnerTypeEntity = new CRMMDLandOwnerTypeEntity();
                        PrepareInitialView();
                        BindCRMMDLandOwnerTypeList();

                        if (cRMMDLandOwnerTypeEntity.IsNew)
                        {
                            MiscUtil.ShowMessage(lblMessage, "C RMLandowner Type Information has been added successfully.", false);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "C RMLandowner Type Information has been updated successfully.", false);
                        }
                    }
                    else
                    {
                        if (cRMMDLandOwnerTypeEntity.IsNew)
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to add C RMLandowner Type Information.", false);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to update C RMLandowner Type Information.", false);
                        }
                    }
                }
                catch (Exception ex)
                {
                    MiscUtil.ShowMessage(lblMessage, ex.Message, true);
                }
            }
        }
        private CRMMDLandOwnerTypeEntity BuildCRMMDLandOwnerTypeEntity()
        {
            CRMMDLandOwnerTypeEntity cRMMDLandOwnerTypeEntity = CurrentCRMMDLandOwnerTypeEntity;

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


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

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

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

                    PrepareEditView();

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

                        String fe = SqlExpressionBuilder.PrepareFilterExpression(CRMMDLandOwnerTypeEntity.FLD_NAME_LandOwnerTypeID, LandOwnerTypeID.ToString(), SQLMatchType.Equal);

                        CRMMDLandOwnerTypeEntity cRMMDLandOwnerTypeEntity = new CRMMDLandOwnerTypeEntity();


                        result = FCCCRMMDLandOwnerType.GetFacadeCreate().Delete(cRMMDLandOwnerTypeEntity, fe, DatabaseOperationType.Delete, TransactionRequired.No);

                        if (result == 0)
                        {
                            _LandOwnerTypeID          = 0;
                            _CRMMDLandOwnerTypeEntity = new CRMMDLandOwnerTypeEntity();
                            PrepareInitialView();
                            BindCRMMDLandOwnerTypeList();

                            MiscUtil.ShowMessage(lblMessage, "C RMLandowner Type has been successfully deleted.", true);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to delete C RMLandowner Type.", true);
                        }
                    }
                    catch (Exception ex)
                    {
                        MiscUtil.ShowMessage(lblMessage, ex.Message, true);
                    }
                }
            }
        }
        private void PrepareEditView()
        {
            CRMMDLandOwnerTypeEntity cRMMDLandOwnerTypeEntity = CurrentCRMMDLandOwnerTypeEntity;


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

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

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

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

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

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

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

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

            return(returnCode);
        }
Example #8
0
 Int64 ICRMMDLandOwnerTypeFacade.Delete(CRMMDLandOwnerTypeEntity cRMMDLandOwnerTypeEntity, String filterExpression, DatabaseOperationType option, TransactionRequired reqTran)
 {
     return(DataAccessFactory.CreateCRMMDLandOwnerTypeDataAccess().Delete(cRMMDLandOwnerTypeEntity, filterExpression, option, reqTran));
 }
Example #9
0
 Int64 ICRMMDLandOwnerTypeFacade.Add(CRMMDLandOwnerTypeEntity cRMMDLandOwnerTypeEntity, DatabaseOperationType option, TransactionRequired reqTran)
 {
     return(DataAccessFactory.CreateCRMMDLandOwnerTypeDataAccess().Add(cRMMDLandOwnerTypeEntity, option, reqTran));
 }
 protected void btnAddNew_Click(object sender, EventArgs e)
 {
     _LandOwnerTypeID          = 0;
     _CRMMDLandOwnerTypeEntity = new CRMMDLandOwnerTypeEntity();
     PrepareInitialView();
 }