Int64 IMDSalaryTaxTypeDataAccess.Delete(MDSalaryTaxTypeEntity mDSalaryTaxTypeEntity, String filterExpression, DatabaseOperationType option, TransactionRequired reqTran) { try { long retValues = -99; switch (reqTran) { case TransactionRequired.No: { retValues = Delete(mDSalaryTaxTypeEntity, filterExpression, option); break; } case TransactionRequired.Yes: { retValues = DeleteTran(mDSalaryTaxTypeEntity, filterExpression, option); break; } default: { retValues = -99; break; } } return(retValues); } catch (Exception ex) { throw ex; } }
Int64 IMDSalaryTaxTypeDataAccess.Add(MDSalaryTaxTypeEntity mDSalaryTaxTypeEntity, DatabaseOperationType option, TransactionRequired reqTran) { try { long retValues = -99; switch (reqTran) { case TransactionRequired.No: { retValues = Add(mDSalaryTaxTypeEntity, option); break; } case TransactionRequired.Yes: { retValues = AddTran(mDSalaryTaxTypeEntity, option); break; } default: { retValues = -99; break; } } return(retValues); } catch (Exception ex) { throw ex; } }
private MDSalaryTaxTypeEntity BuildMDSalaryTaxTypeEntity() { MDSalaryTaxTypeEntity mDSalaryTaxTypeEntity = CurrentMDSalaryTaxTypeEntity; mDSalaryTaxTypeEntity.Name = txtName.Text.Trim(); mDSalaryTaxTypeEntity.IsRemoved = chkIsRemoved.Checked; return(mDSalaryTaxTypeEntity); }
private void SaveMDSalaryTaxTypeEntity() { if (IsValid) { try { MDSalaryTaxTypeEntity mDSalaryTaxTypeEntity = BuildMDSalaryTaxTypeEntity(); Int64 result = -1; if (mDSalaryTaxTypeEntity.IsNew) { result = FCCMDSalaryTaxType.GetFacadeCreate().Add(mDSalaryTaxTypeEntity, DatabaseOperationType.Add, TransactionRequired.No); } else { String filterExpression = SqlExpressionBuilder.PrepareFilterExpression(MDSalaryTaxTypeEntity.FLD_NAME_SalaryTaxTypeID, mDSalaryTaxTypeEntity.SalaryTaxTypeID.ToString(), SQLMatchType.Equal); result = FCCMDSalaryTaxType.GetFacadeCreate().Update(mDSalaryTaxTypeEntity, filterExpression, DatabaseOperationType.Update, TransactionRequired.No); } if (result > 0) { _SalaryTaxTypeID = 0; _MDSalaryTaxTypeEntity = new MDSalaryTaxTypeEntity(); PrepareInitialView(); BindMDSalaryTaxTypeList(); if (mDSalaryTaxTypeEntity.IsNew) { MiscUtil.ShowMessage(lblMessage, "Salary Tax Type Information has been added successfully.", false); } else { MiscUtil.ShowMessage(lblMessage, "Salary Tax Type Information has been updated successfully.", false); } } else { if (mDSalaryTaxTypeEntity.IsNew) { MiscUtil.ShowMessage(lblMessage, "Failed to add Salary Tax Type Information.", false); } else { MiscUtil.ShowMessage(lblMessage, "Failed to update Salary Tax Type Information.", false); } } } catch (Exception ex) { MiscUtil.ShowMessage(lblMessage, ex.Message, true); } } }
private Int64 UpdateTran(MDSalaryTaxTypeEntity mDSalaryTaxTypeEntity, String filterExpression, DatabaseOperationType option) { long returnCode = -99; const string SP = "dbo.MDSalaryTaxType_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, "@SalaryTaxTypeID", DbType.Int64, mDSalaryTaxTypeEntity.SalaryTaxTypeID); db.AddInParameter(cmd, "@Name", DbType.String, mDSalaryTaxTypeEntity.Name); db.AddInParameter(cmd, "@IsRemoved", DbType.Boolean, mDSalaryTaxTypeEntity.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 lvMDSalaryTaxType_ItemCommand(object sender, ListViewCommandEventArgs e) { Int64 SalaryTaxTypeID; Int64.TryParse(e.CommandArgument.ToString(), out SalaryTaxTypeID); if (SalaryTaxTypeID > 0) { if (string.Equals(e.CommandName, "EditItem")) { _SalaryTaxTypeID = SalaryTaxTypeID; PrepareEditView(); cpeEditor.Collapsed = false; cpeEditor.ClientState = "false"; } else if (string.Equals(e.CommandName, "DeleteItem")) { try { Int64 result = -1; String fe = SqlExpressionBuilder.PrepareFilterExpression(MDSalaryTaxTypeEntity.FLD_NAME_SalaryTaxTypeID, SalaryTaxTypeID.ToString(), SQLMatchType.Equal); MDSalaryTaxTypeEntity mDSalaryTaxTypeEntity = new MDSalaryTaxTypeEntity(); result = FCCMDSalaryTaxType.GetFacadeCreate().Delete(mDSalaryTaxTypeEntity, fe, DatabaseOperationType.Delete, TransactionRequired.No); if (result == 0) { _SalaryTaxTypeID = 0; _MDSalaryTaxTypeEntity = new MDSalaryTaxTypeEntity(); PrepareInitialView(); BindMDSalaryTaxTypeList(); MiscUtil.ShowMessage(lblMessage, "Salary Tax Type has been successfully deleted.", true); } else { MiscUtil.ShowMessage(lblMessage, "Failed to delete Salary Tax Type.", true); } } catch (Exception ex) { MiscUtil.ShowMessage(lblMessage, ex.Message, true); } } } }
private void PrepareEditView() { MDSalaryTaxTypeEntity mDSalaryTaxTypeEntity = CurrentMDSalaryTaxTypeEntity; if (!mDSalaryTaxTypeEntity.IsNew) { txtName.Text = mDSalaryTaxTypeEntity.Name.ToString(); chkIsRemoved.Checked = mDSalaryTaxTypeEntity.IsRemoved; btnSubmit.Text = "Update"; btnAddNew.Visible = true; } }
private Int64 Update(MDSalaryTaxTypeEntity mDSalaryTaxTypeEntity, String filterExpression, DatabaseOperationType option) { long returnCode = -99; const string SP = "dbo.MDSalaryTaxType_SET"; using (DbCommand cmd = Database.GetStoredProcCommand(SP)) { AddOptionParameter(cmd, option); AddOutputParameter(cmd); AddFilterExpressionParameter(cmd, filterExpression); Database.AddInParameter(cmd, "@SalaryTaxTypeID", DbType.Int64, mDSalaryTaxTypeEntity.SalaryTaxTypeID); Database.AddInParameter(cmd, "@Name", DbType.String, mDSalaryTaxTypeEntity.Name); Database.AddInParameter(cmd, "@IsRemoved", DbType.Boolean, mDSalaryTaxTypeEntity.IsRemoved); using (IDataReader reader = Database.ExecuteReader(cmd)) { returnCode = GetReturnCodeFromParameter(cmd); switch (returnCode) { case SqlConstants.DB_STATUS_CODE_DATAALREADYEXIST: { throw new ArgumentException("MDSalaryTaxTypeEntity already exists. Please specify another MDSalaryTaxTypeEntity."); } case SqlConstants.DB_STATUS_CODE_DATAUPDATEDFROMOTHERSESSION: { throw new ArgumentException("MDSalaryTaxTypeEntity data already updated from different session."); } case SqlConstants.DB_STATUS_CODE_FAIL_OPERATION: { throw new ArgumentException("MDSalaryTaxTypeEntity already exists. Please specify another MDSalaryTaxTypeEntity."); } } } } return(returnCode); }
Int64 IMDSalaryTaxTypeFacade.Delete(MDSalaryTaxTypeEntity mDSalaryTaxTypeEntity, String filterExpression, DatabaseOperationType option, TransactionRequired reqTran) { return(DataAccessFactory.CreateMDSalaryTaxTypeDataAccess().Delete(mDSalaryTaxTypeEntity, filterExpression, option, reqTran)); }
Int64 IMDSalaryTaxTypeFacade.Add(MDSalaryTaxTypeEntity mDSalaryTaxTypeEntity, DatabaseOperationType option, TransactionRequired reqTran) { return(DataAccessFactory.CreateMDSalaryTaxTypeDataAccess().Add(mDSalaryTaxTypeEntity, option, reqTran)); }
protected void btnAddNew_Click(object sender, EventArgs e) { _SalaryTaxTypeID = 0; _MDSalaryTaxTypeEntity = new MDSalaryTaxTypeEntity(); PrepareInitialView(); }