Int64 ICMNMDEventStatusDataAccess.Add(CMNMDEventStatusEntity cMNMDEventStatusEntity, DatabaseOperationType option, TransactionRequired reqTran) { try { long retValues = -99; switch (reqTran) { case TransactionRequired.No: { retValues = Add(cMNMDEventStatusEntity, option); break; } case TransactionRequired.Yes: { retValues = AddTran(cMNMDEventStatusEntity, option); break; } default: { retValues = -99; break; } } return(retValues); } catch (Exception ex) { throw ex; } }
private void SaveCMNMDEventStatusEntity() { if (IsValid) { try { CMNMDEventStatusEntity cMNMDEventStatusEntity = BuildCMNMDEventStatusEntity(); Int64 result = -1; if (cMNMDEventStatusEntity.IsNew) { result = FCCCMNMDEventStatus.GetFacadeCreate().Add(cMNMDEventStatusEntity, DatabaseOperationType.Add, TransactionRequired.No); } else { String filterExpression = SqlExpressionBuilder.PrepareFilterExpression(CMNMDEventStatusEntity.FLD_NAME_EventStatusID, cMNMDEventStatusEntity.EventStatusID.ToString(), SQLMatchType.Equal); result = FCCCMNMDEventStatus.GetFacadeCreate().Update(cMNMDEventStatusEntity, filterExpression, DatabaseOperationType.Update, TransactionRequired.No); } if (result > 0) { _EventStatusID = 0; _CMNMDEventStatusEntity = new CMNMDEventStatusEntity(); PrepareInitialView(); BindCMNMDEventStatusList(); if (cMNMDEventStatusEntity.IsNew) { MiscUtil.ShowMessage(lblMessage, "C MNEvent Status Information has been added successfully.", false); } else { MiscUtil.ShowMessage(lblMessage, "C MNEvent Status Information has been updated successfully.", false); } } else { if (cMNMDEventStatusEntity.IsNew) { MiscUtil.ShowMessage(lblMessage, "Failed to add C MNEvent Status Information.", false); } else { MiscUtil.ShowMessage(lblMessage, "Failed to update C MNEvent Status Information.", false); } } } catch (Exception ex) { MiscUtil.ShowMessage(lblMessage, ex.Message, true); } } }
private CMNMDEventStatusEntity BuildCMNMDEventStatusEntity() { CMNMDEventStatusEntity cMNMDEventStatusEntity = CurrentCMNMDEventStatusEntity; cMNMDEventStatusEntity.Name = txtName.Text.Trim(); cMNMDEventStatusEntity.Description = txtDescription.Text.Trim(); cMNMDEventStatusEntity.IsRemoved = chkIsRemoved.Checked; return(cMNMDEventStatusEntity); }
private Int64 UpdateTran(CMNMDEventStatusEntity cMNMDEventStatusEntity, String filterExpression, DatabaseOperationType option) { long returnCode = -99; const string SP = "dbo.CMNMDEventStatus_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, "@EventStatusID", DbType.Int64, cMNMDEventStatusEntity.EventStatusID); db.AddInParameter(cmd, "@Name", DbType.String, cMNMDEventStatusEntity.Name); db.AddInParameter(cmd, "@Description", DbType.String, cMNMDEventStatusEntity.Description); db.AddInParameter(cmd, "@IsRemoved", DbType.Boolean, cMNMDEventStatusEntity.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 lvCMNMDEventStatus_ItemCommand(object sender, ListViewCommandEventArgs e) { Int64 EventStatusID; Int64.TryParse(e.CommandArgument.ToString(), out EventStatusID); if (EventStatusID > 0) { if (string.Equals(e.CommandName, "EditItem")) { _EventStatusID = EventStatusID; PrepareEditView(); cpeEditor.Collapsed = false; cpeEditor.ClientState = "false"; } else if (string.Equals(e.CommandName, "DeleteItem")) { try { Int64 result = -1; String fe = SqlExpressionBuilder.PrepareFilterExpression(CMNMDEventStatusEntity.FLD_NAME_EventStatusID, EventStatusID.ToString(), SQLMatchType.Equal); CMNMDEventStatusEntity cMNMDEventStatusEntity = new CMNMDEventStatusEntity(); result = FCCCMNMDEventStatus.GetFacadeCreate().Delete(cMNMDEventStatusEntity, fe, DatabaseOperationType.Delete, TransactionRequired.No); if (result == 0) { _EventStatusID = 0; _CMNMDEventStatusEntity = new CMNMDEventStatusEntity(); PrepareInitialView(); BindCMNMDEventStatusList(); MiscUtil.ShowMessage(lblMessage, "C MNEvent Status has been successfully deleted.", true); } else { MiscUtil.ShowMessage(lblMessage, "Failed to delete C MNEvent Status.", true); } } catch (Exception ex) { MiscUtil.ShowMessage(lblMessage, ex.Message, true); } } } }
private void PrepareEditView() { CMNMDEventStatusEntity cMNMDEventStatusEntity = CurrentCMNMDEventStatusEntity; if (!cMNMDEventStatusEntity.IsNew) { txtName.Text = cMNMDEventStatusEntity.Name.ToString(); txtDescription.Text = cMNMDEventStatusEntity.Description.ToString(); chkIsRemoved.Checked = cMNMDEventStatusEntity.IsRemoved; btnSubmit.Text = "Update"; btnAddNew.Visible = true; } }
private Int64 Update(CMNMDEventStatusEntity cMNMDEventStatusEntity, String filterExpression, DatabaseOperationType option) { long returnCode = -99; const string SP = "dbo.CMNMDEventStatus_SET"; using (DbCommand cmd = Database.GetStoredProcCommand(SP)) { AddOptionParameter(cmd, option); AddOutputParameter(cmd); AddFilterExpressionParameter(cmd, filterExpression); Database.AddInParameter(cmd, "@EventStatusID", DbType.Int64, cMNMDEventStatusEntity.EventStatusID); Database.AddInParameter(cmd, "@Name", DbType.String, cMNMDEventStatusEntity.Name); Database.AddInParameter(cmd, "@Description", DbType.String, cMNMDEventStatusEntity.Description); Database.AddInParameter(cmd, "@IsRemoved", DbType.Boolean, cMNMDEventStatusEntity.IsRemoved); using (IDataReader reader = Database.ExecuteReader(cmd)) { returnCode = GetReturnCodeFromParameter(cmd); switch (returnCode) { case SqlConstants.DB_STATUS_CODE_DATAALREADYEXIST: { throw new ArgumentException("CMNMDEventStatusEntity already exists. Please specify another CMNMDEventStatusEntity."); } case SqlConstants.DB_STATUS_CODE_DATAUPDATEDFROMOTHERSESSION: { throw new ArgumentException("CMNMDEventStatusEntity data already updated from different session."); } case SqlConstants.DB_STATUS_CODE_FAIL_OPERATION: { throw new ArgumentException("CMNMDEventStatusEntity already exists. Please specify another CMNMDEventStatusEntity."); } } } } return(returnCode); }
protected void btnAddNew_Click(object sender, EventArgs e) { _EventStatusID = 0; _CMNMDEventStatusEntity = new CMNMDEventStatusEntity(); PrepareInitialView(); }
Int64 ICMNMDEventStatusFacade.Delete(CMNMDEventStatusEntity cMNMDEventStatusEntity, String filterExpression, DatabaseOperationType option, TransactionRequired reqTran) { return(DataAccessFactory.CreateCMNMDEventStatusDataAccess().Delete(cMNMDEventStatusEntity, filterExpression, option, reqTran)); }
Int64 ICMNMDEventStatusFacade.Add(CMNMDEventStatusEntity cMNMDEventStatusEntity, DatabaseOperationType option, TransactionRequired reqTran) { return(DataAccessFactory.CreateCMNMDEventStatusDataAccess().Add(cMNMDEventStatusEntity, option, reqTran)); }