Int64 IMDSurveyOwnerTypeDataAccess.Add(MDSurveyOwnerTypeEntity mDSurveyOwnerTypeEntity, DatabaseOperationType option, TransactionRequired reqTran) { try { long retValues = -99; switch (reqTran) { case TransactionRequired.No: { retValues = Add(mDSurveyOwnerTypeEntity, option); break; } case TransactionRequired.Yes: { retValues = AddTran(mDSurveyOwnerTypeEntity, option); break; } default: { retValues = -99; break; } } return(retValues); } catch (Exception ex) { throw ex; } }
private void SaveMDSurveyOwnerTypeEntity() { if (IsValid) { try { MDSurveyOwnerTypeEntity mDSurveyOwnerTypeEntity = BuildMDSurveyOwnerTypeEntity(); Int64 result = -1; if (mDSurveyOwnerTypeEntity.IsNew) { result = FCCMDSurveyOwnerType.GetFacadeCreate().Add(mDSurveyOwnerTypeEntity, DatabaseOperationType.Add, TransactionRequired.No); } else { String filterExpression = SqlExpressionBuilder.PrepareFilterExpression(MDSurveyOwnerTypeEntity.FLD_NAME_SurveyOwnerTypeID, mDSurveyOwnerTypeEntity.SurveyOwnerTypeID.ToString(), SQLMatchType.Equal); result = FCCMDSurveyOwnerType.GetFacadeCreate().Update(mDSurveyOwnerTypeEntity, filterExpression, DatabaseOperationType.Update, TransactionRequired.No); } if (result > 0) { _SurveyOwnerTypeID = 0; _MDSurveyOwnerTypeEntity = new MDSurveyOwnerTypeEntity(); PrepareInitialView(); BindMDSurveyOwnerTypeList(); if (mDSurveyOwnerTypeEntity.IsNew) { MiscUtil.ShowMessage(lblMessage, "Survey Owner Type Information has been added successfully.", false); } else { MiscUtil.ShowMessage(lblMessage, "Survey Owner Type Information has been updated successfully.", false); } } else { if (mDSurveyOwnerTypeEntity.IsNew) { MiscUtil.ShowMessage(lblMessage, "Failed to add Survey Owner Type Information.", false); } else { MiscUtil.ShowMessage(lblMessage, "Failed to update Survey Owner Type Information.", false); } } } catch (Exception ex) { MiscUtil.ShowMessage(lblMessage, ex.Message, true); } } }
private MDSurveyOwnerTypeEntity BuildMDSurveyOwnerTypeEntity() { MDSurveyOwnerTypeEntity mDSurveyOwnerTypeEntity = CurrentMDSurveyOwnerTypeEntity; mDSurveyOwnerTypeEntity.Name = txtName.Text.Trim(); mDSurveyOwnerTypeEntity.Description = txtDescription.Text.Trim(); mDSurveyOwnerTypeEntity.IsRemoved = chkIsRemoved.Checked; return(mDSurveyOwnerTypeEntity); }
private Int64 UpdateTran(MDSurveyOwnerTypeEntity mDSurveyOwnerTypeEntity, String filterExpression, DatabaseOperationType option) { long returnCode = -99; const string SP = "dbo.MDSurveyOwnerType_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, "@SurveyOwnerTypeID", DbType.Int64, mDSurveyOwnerTypeEntity.SurveyOwnerTypeID); db.AddInParameter(cmd, "@Name", DbType.String, mDSurveyOwnerTypeEntity.Name); db.AddInParameter(cmd, "@Description", DbType.String, mDSurveyOwnerTypeEntity.Description); db.AddInParameter(cmd, "@IsRemoved", DbType.Boolean, mDSurveyOwnerTypeEntity.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 lvMDSurveyOwnerType_ItemCommand(object sender, ListViewCommandEventArgs e) { Int64 SurveyOwnerTypeID; Int64.TryParse(e.CommandArgument.ToString(), out SurveyOwnerTypeID); if (SurveyOwnerTypeID > 0) { if (string.Equals(e.CommandName, "EditItem")) { _SurveyOwnerTypeID = SurveyOwnerTypeID; PrepareEditView(); cpeEditor.Collapsed = false; cpeEditor.ClientState = "false"; } else if (string.Equals(e.CommandName, "DeleteItem")) { try { Int64 result = -1; String fe = SqlExpressionBuilder.PrepareFilterExpression(MDSurveyOwnerTypeEntity.FLD_NAME_SurveyOwnerTypeID, SurveyOwnerTypeID.ToString(), SQLMatchType.Equal); MDSurveyOwnerTypeEntity mDSurveyOwnerTypeEntity = new MDSurveyOwnerTypeEntity(); result = FCCMDSurveyOwnerType.GetFacadeCreate().Delete(mDSurveyOwnerTypeEntity, fe, DatabaseOperationType.Delete, TransactionRequired.No); if (result == 0) { _SurveyOwnerTypeID = 0; _MDSurveyOwnerTypeEntity = new MDSurveyOwnerTypeEntity(); PrepareInitialView(); BindMDSurveyOwnerTypeList(); MiscUtil.ShowMessage(lblMessage, "Survey Owner Type has been successfully deleted.", true); } else { MiscUtil.ShowMessage(lblMessage, "Failed to delete Survey Owner Type.", true); } } catch (Exception ex) { MiscUtil.ShowMessage(lblMessage, ex.Message, true); } } } }
private void PrepareEditView() { MDSurveyOwnerTypeEntity mDSurveyOwnerTypeEntity = CurrentMDSurveyOwnerTypeEntity; if (!mDSurveyOwnerTypeEntity.IsNew) { txtName.Text = mDSurveyOwnerTypeEntity.Name.ToString(); txtDescription.Text = mDSurveyOwnerTypeEntity.Description.ToString(); chkIsRemoved.Checked = mDSurveyOwnerTypeEntity.IsRemoved; btnSubmit.Text = "Update"; btnAddNew.Visible = true; } }
private Int64 Update(MDSurveyOwnerTypeEntity mDSurveyOwnerTypeEntity, String filterExpression, DatabaseOperationType option) { long returnCode = -99; const string SP = "dbo.MDSurveyOwnerType_SET"; using (DbCommand cmd = Database.GetStoredProcCommand(SP)) { AddOptionParameter(cmd, option); AddOutputParameter(cmd); AddFilterExpressionParameter(cmd, filterExpression); Database.AddInParameter(cmd, "@SurveyOwnerTypeID", DbType.Int64, mDSurveyOwnerTypeEntity.SurveyOwnerTypeID); Database.AddInParameter(cmd, "@Name", DbType.String, mDSurveyOwnerTypeEntity.Name); Database.AddInParameter(cmd, "@Description", DbType.String, mDSurveyOwnerTypeEntity.Description); Database.AddInParameter(cmd, "@IsRemoved", DbType.Boolean, mDSurveyOwnerTypeEntity.IsRemoved); using (IDataReader reader = Database.ExecuteReader(cmd)) { returnCode = GetReturnCodeFromParameter(cmd); switch (returnCode) { case SqlConstants.DB_STATUS_CODE_DATAALREADYEXIST: { throw new ArgumentException("MDSurveyOwnerTypeEntity already exists. Please specify another MDSurveyOwnerTypeEntity."); } case SqlConstants.DB_STATUS_CODE_DATAUPDATEDFROMOTHERSESSION: { throw new ArgumentException("MDSurveyOwnerTypeEntity data already updated from different session."); } case SqlConstants.DB_STATUS_CODE_FAIL_OPERATION: { throw new ArgumentException("MDSurveyOwnerTypeEntity already exists. Please specify another MDSurveyOwnerTypeEntity."); } } } } return(returnCode); }
protected void btnAddNew_Click(object sender, EventArgs e) { _SurveyOwnerTypeID = 0; _MDSurveyOwnerTypeEntity = new MDSurveyOwnerTypeEntity(); PrepareInitialView(); }
Int64 IMDSurveyOwnerTypeFacade.Delete(MDSurveyOwnerTypeEntity mDSurveyOwnerTypeEntity, String filterExpression, DatabaseOperationType option, TransactionRequired reqTran) { return(DataAccessFactory.CreateMDSurveyOwnerTypeDataAccess().Delete(mDSurveyOwnerTypeEntity, filterExpression, option, reqTran)); }
Int64 IMDSurveyOwnerTypeFacade.Add(MDSurveyOwnerTypeEntity mDSurveyOwnerTypeEntity, DatabaseOperationType option, TransactionRequired reqTran) { return(DataAccessFactory.CreateMDSurveyOwnerTypeDataAccess().Add(mDSurveyOwnerTypeEntity, option, reqTran)); }