Int64 IMDDrivingLicenseCategoryDataAccess.Add(MDDrivingLicenseCategoryEntity mDDrivingLicenseCategoryEntity, DatabaseOperationType option, TransactionRequired reqTran)
        {
            try
            {
                long retValues = -99;

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

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

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

                return(retValues);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
        private void SaveMDDrivingLicenseCategoryEntity()
        {
            if (IsValid)
            {
                try
                {
                    MDDrivingLicenseCategoryEntity mDDrivingLicenseCategoryEntity = BuildMDDrivingLicenseCategoryEntity();

                    Int64 result = -1;

                    if (mDDrivingLicenseCategoryEntity.IsNew)
                    {
                        result = FCCMDDrivingLicenseCategory.GetFacadeCreate().Add(mDDrivingLicenseCategoryEntity, DatabaseOperationType.Add, TransactionRequired.No);
                    }
                    else
                    {
                        String filterExpression = SqlExpressionBuilder.PrepareFilterExpression(MDDrivingLicenseCategoryEntity.FLD_NAME_DrivingLicenseCategoryID, mDDrivingLicenseCategoryEntity.DrivingLicenseCategoryID.ToString(), SQLMatchType.Equal);
                        result = FCCMDDrivingLicenseCategory.GetFacadeCreate().Update(mDDrivingLicenseCategoryEntity, filterExpression, DatabaseOperationType.Update, TransactionRequired.No);
                    }

                    if (result > 0)
                    {
                        _DrivingLicenseCategoryID       = 0;
                        _MDDrivingLicenseCategoryEntity = new MDDrivingLicenseCategoryEntity();
                        PrepareInitialView();
                        BindMDDrivingLicenseCategoryList();

                        if (mDDrivingLicenseCategoryEntity.IsNew)
                        {
                            MiscUtil.ShowMessage(lblMessage, "Driving License Category Information has been added successfully.", false);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Driving License Category Information has been updated successfully.", false);
                        }
                    }
                    else
                    {
                        if (mDDrivingLicenseCategoryEntity.IsNew)
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to add Driving License Category Information.", false);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to update Driving License Category Information.", false);
                        }
                    }
                }
                catch (Exception ex)
                {
                    MiscUtil.ShowMessage(lblMessage, ex.Message, true);
                }
            }
        }
        private MDDrivingLicenseCategoryEntity BuildMDDrivingLicenseCategoryEntity()
        {
            MDDrivingLicenseCategoryEntity mDDrivingLicenseCategoryEntity = CurrentMDDrivingLicenseCategoryEntity;

            mDDrivingLicenseCategoryEntity.Name      = txtName.Text.Trim();
            mDDrivingLicenseCategoryEntity.Remarks   = txtRemarks.Text.Trim();
            mDDrivingLicenseCategoryEntity.IsRemoved = chkIsRemoved.Checked;


            return(mDDrivingLicenseCategoryEntity);
        }
        private Int64 UpdateTran(MDDrivingLicenseCategoryEntity mDDrivingLicenseCategoryEntity, String filterExpression, DatabaseOperationType option)
        {
            long         returnCode = -99;
            const string SP         = "dbo.MDDrivingLicenseCategory_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, "@DrivingLicenseCategoryID", DbType.Int64, mDDrivingLicenseCategoryEntity.DrivingLicenseCategoryID);
                db.AddInParameter(cmd, "@Name", DbType.String, mDDrivingLicenseCategoryEntity.Name);
                db.AddInParameter(cmd, "@Remarks", DbType.String, mDDrivingLicenseCategoryEntity.Remarks);
                db.AddInParameter(cmd, "@IsRemoved", DbType.Boolean, mDDrivingLicenseCategoryEntity.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 lvMDDrivingLicenseCategory_ItemCommand(object sender, ListViewCommandEventArgs e)
        {
            Int64 DrivingLicenseCategoryID;

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

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

                    PrepareEditView();

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

                        String fe = SqlExpressionBuilder.PrepareFilterExpression(MDDrivingLicenseCategoryEntity.FLD_NAME_DrivingLicenseCategoryID, DrivingLicenseCategoryID.ToString(), SQLMatchType.Equal);

                        MDDrivingLicenseCategoryEntity mDDrivingLicenseCategoryEntity = new MDDrivingLicenseCategoryEntity();


                        result = FCCMDDrivingLicenseCategory.GetFacadeCreate().Delete(mDDrivingLicenseCategoryEntity, fe, DatabaseOperationType.Delete, TransactionRequired.No);

                        if (result == 0)
                        {
                            _DrivingLicenseCategoryID       = 0;
                            _MDDrivingLicenseCategoryEntity = new MDDrivingLicenseCategoryEntity();
                            PrepareInitialView();
                            BindMDDrivingLicenseCategoryList();

                            MiscUtil.ShowMessage(lblMessage, "Driving License Category has been successfully deleted.", true);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to delete Driving License Category.", true);
                        }
                    }
                    catch (Exception ex)
                    {
                        MiscUtil.ShowMessage(lblMessage, ex.Message, true);
                    }
                }
            }
        }
        private void PrepareEditView()
        {
            MDDrivingLicenseCategoryEntity mDDrivingLicenseCategoryEntity = CurrentMDDrivingLicenseCategoryEntity;


            if (!mDDrivingLicenseCategoryEntity.IsNew)
            {
                txtName.Text         = mDDrivingLicenseCategoryEntity.Name.ToString();
                txtRemarks.Text      = mDDrivingLicenseCategoryEntity.Remarks.ToString();
                chkIsRemoved.Checked = mDDrivingLicenseCategoryEntity.IsRemoved;

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

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

                Database.AddInParameter(cmd, "@DrivingLicenseCategoryID", DbType.Int64, mDDrivingLicenseCategoryEntity.DrivingLicenseCategoryID);
                Database.AddInParameter(cmd, "@Name", DbType.String, mDDrivingLicenseCategoryEntity.Name);
                Database.AddInParameter(cmd, "@Remarks", DbType.String, mDDrivingLicenseCategoryEntity.Remarks);
                Database.AddInParameter(cmd, "@IsRemoved", DbType.Boolean, mDDrivingLicenseCategoryEntity.IsRemoved);

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

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

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

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

            return(returnCode);
        }
 protected void btnAddNew_Click(object sender, EventArgs e)
 {
     _DrivingLicenseCategoryID       = 0;
     _MDDrivingLicenseCategoryEntity = new MDDrivingLicenseCategoryEntity();
     PrepareInitialView();
 }
Example #9
0
 Int64 IMDDrivingLicenseCategoryFacade.Delete(MDDrivingLicenseCategoryEntity mDDrivingLicenseCategoryEntity, String filterExpression, DatabaseOperationType option, TransactionRequired reqTran)
 {
     return(DataAccessFactory.CreateMDDrivingLicenseCategoryDataAccess().Delete(mDDrivingLicenseCategoryEntity, filterExpression, option, reqTran));
 }
Example #10
0
 Int64 IMDDrivingLicenseCategoryFacade.Add(MDDrivingLicenseCategoryEntity mDDrivingLicenseCategoryEntity, DatabaseOperationType option, TransactionRequired reqTran)
 {
     return(DataAccessFactory.CreateMDDrivingLicenseCategoryDataAccess().Add(mDDrivingLicenseCategoryEntity, option, reqTran));
 }