public AccountKeyMaster objGetAccountKeyMaster(string argAccKeyCode, string argClientCode) { AccountKeyMaster argAccountKeyMaster = new AccountKeyMaster(); DataSet DataSetToFill = new DataSet(); if (argAccKeyCode.Trim() == "") { goto ErrorHandlers; } if (argClientCode.Trim() == "") { goto ErrorHandlers; } DataSetToFill = this.GetAccountKeyMaster(argAccKeyCode, argClientCode); if (DataSetToFill.Tables[0].Rows.Count <= 0) { goto Finish; } argAccountKeyMaster = this.objCreateAccountKeyMaster((DataRow)DataSetToFill.Tables[0].Rows[0]); goto Finish; ErrorHandlers: Finish: DataSetToFill = null; return(argAccountKeyMaster); }
private AccountKeyMaster objCreateAccountKeyMaster(DataRow dr) { AccountKeyMaster tAccountKeyMaster = new AccountKeyMaster(); tAccountKeyMaster.SetObjectInfo(dr); return(tAccountKeyMaster); }
public void UpdateAccountKeyMaster(AccountKeyMaster argAccountKeyMaster, DataAccess da, List <ErrorHandler> lstErr) { SqlParameter[] param = new SqlParameter[8]; param[0] = new SqlParameter("@AccKeyCode", argAccountKeyMaster.AccKeyCode); param[1] = new SqlParameter("@AccKeyDesc", argAccountKeyMaster.AccKeyDesc); param[2] = new SqlParameter("@ClientCode", argAccountKeyMaster.ClientCode); param[3] = new SqlParameter("@CreatedBy", argAccountKeyMaster.CreatedBy); param[4] = new SqlParameter("@ModifiedBy", argAccountKeyMaster.ModifiedBy); param[5] = new SqlParameter("@Type", SqlDbType.Char); param[5].Size = 1; param[5].Direction = ParameterDirection.Output; param[6] = new SqlParameter("@Message", SqlDbType.VarChar); param[6].Size = 255; param[6].Direction = ParameterDirection.Output; param[7] = new SqlParameter("@returnvalue", SqlDbType.VarChar); param[7].Size = 20; param[7].Direction = ParameterDirection.Output; int i = da.NExecuteNonQuery("Proc_UpdateAccountKeyMaster", param); string strMessage = Convert.ToString(param[6].Value); string strType = Convert.ToString(param[5].Value); string strRetValue = Convert.ToString(param[7].Value); objErrorHandler.Type = strType; objErrorHandler.MsgId = 0; objErrorHandler.Module = ErrorConstant.strInsertModule; objErrorHandler.ModulePart = ErrorConstant.strMasterModule; objErrorHandler.Message = strMessage.ToString(); objErrorHandler.RowNo = 0; objErrorHandler.FieldName = ""; objErrorHandler.LogCode = ""; objErrorHandler.ReturnValue = strRetValue; lstErr.Add(objErrorHandler); }
public ICollection <AccountKeyMaster> colGetAccountKeyMaster(string argClientCode) { List <AccountKeyMaster> lst = new List <AccountKeyMaster>(); DataSet DataSetToFill = new DataSet(); AccountKeyMaster tAccountKeyMaster = new AccountKeyMaster(); DataSetToFill = this.GetAccountKeyMaster(argClientCode); if (DataSetToFill != null) { foreach (DataRow dr in DataSetToFill.Tables[0].Rows) { lst.Add(objCreateAccountKeyMaster(dr)); } } goto Finish; Finish: DataSetToFill = null; return(lst); }
public ICollection <ErrorHandler> SaveAccountKeyMaster(AccountKeyMaster argAccountKeyMaster) { List <ErrorHandler> lstErr = new List <ErrorHandler>(); DataAccess da = new DataAccess(); try { if (blnIsAccountKeyMasterExists(argAccountKeyMaster.AccKeyCode, argAccountKeyMaster.ClientCode) == false) { da.Open_Connection(); da.BEGIN_TRANSACTION(); InsertAccountKeyMaster(argAccountKeyMaster, da, lstErr); foreach (ErrorHandler objerr in lstErr) { if (objerr.Type == "E") { da.ROLLBACK_TRANSACTION(); return(lstErr); } } da.COMMIT_TRANSACTION(); } else { da.Open_Connection(); da.BEGIN_TRANSACTION(); UpdateAccountKeyMaster(argAccountKeyMaster, da, lstErr); foreach (ErrorHandler objerr in lstErr) { if (objerr.Type == "E") { da.ROLLBACK_TRANSACTION(); return(lstErr); } } da.COMMIT_TRANSACTION(); } } catch (Exception ex) { if (da != null) { da.ROLLBACK_TRANSACTION(); } objErrorHandler.Type = ErrorConstant.strAboartType; objErrorHandler.MsgId = 0; objErrorHandler.Module = ErrorConstant.strInsertModule; objErrorHandler.ModulePart = ErrorConstant.strMasterModule; objErrorHandler.Message = ex.Message.ToString(); objErrorHandler.RowNo = 0; objErrorHandler.FieldName = ""; objErrorHandler.LogCode = ""; lstErr.Add(objErrorHandler); } finally { if (da != null) { da.Close_Connection(); da = null; } } return(lstErr); }