///<summary> /// Method Invocation of wrapper classes ///<summary> protected static FR_L3NR_GNRFID_1328 Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L3NR_GNRFID_1328 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { bool cleanupConnection = Connection == null; bool cleanupTransaction = Transaction == null; FR_L3NR_GNRFID_1328 functionReturn = new FR_L3NR_GNRFID_1328(); try { if (cleanupConnection == true) { Connection = CSV2Core_MySQL.Support.DBSQLSupport.CreateConnection(ConnectionString); Connection.Open(); } if (cleanupTransaction == true) { Transaction = Connection.BeginTransaction(); } functionReturn = Execute(Connection, Transaction, Parameter, securityTicket); #region Cleanup Connection/Transaction //Commit the transaction if (cleanupTransaction == true) { Transaction.Commit(); } //Close the connection if (cleanupConnection == true) { Connection.Close(); } #endregion } catch (Exception ex) { try { if (cleanupTransaction == true && Transaction != null) { Transaction.Rollback(); } } catch { } try { if (cleanupConnection == true && Connection != null) { Connection.Close(); } } catch { } throw new Exception("Exception occured in method cls_Get_NumberRange_For_NumberRangeID", ex); } return(functionReturn); }
protected static FR_L3NR_GNRFID_1328 Execute(DbConnection Connection, DbTransaction Transaction, P_L3NR_GNRFID_1328 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { var returnStatus = new FR_L3NR_GNRFID_1328(); DbCommand command = Connection.CreateCommand(); command.Connection = Connection; command.Transaction = Transaction; var commandLocation = "CL3_NumberRange.Atomic.Retrieval.SQL.cls_Get_NumberRange_For_NumberRangeID.sql"; command.CommandText = new System.IO.StreamReader(System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream(commandLocation)).ReadToEnd(); CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "ticket", securityTicket); command.CommandTimeout = QueryTimeout; CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "NumberRange_UsageAreaID", Parameter.NumberRange_UsageAreaID); List <L3NR_GNRFID_1328> results = new List <L3NR_GNRFID_1328>(); var loader = new CSV2Core_MySQL.Dictionaries.MultiTable.Loader.DictionaryLoader(Connection, Transaction); var reader = new CSV2Core_MySQL.Support.DBSQLReader(command.ExecuteReader()); try { reader.SetOrdinals(new string[] { "CMN_NumberRangeID", "NumberRange_Name", "NumberRange_UsageArea_RefID", "Value_Current", "Value_Start", "Value_End", "FixedPrefix", "IsDeleted", "Tenant_RefID", "Formatting_LeadingFillCharacter", "Formatting_NumberLength" }); while (reader.Read()) { L3NR_GNRFID_1328 resultItem = new L3NR_GNRFID_1328(); //0:Parameter CMN_NumberRangeID of type Guid resultItem.CMN_NumberRangeID = reader.GetGuid(0); //1:Parameter NumberRange_Name of type string resultItem.NumberRange_Name = reader.GetString(1); //2:Parameter NumberRange_UsageArea_RefID of type Guid resultItem.NumberRange_UsageArea_RefID = reader.GetGuid(2); //3:Parameter Value_Current of type long resultItem.Value_Current = reader.GetLong(3); //4:Parameter Value_Start of type long resultItem.Value_Start = reader.GetLong(4); //5:Parameter Value_End of type long resultItem.Value_End = reader.GetLong(5); //6:Parameter FixedPrefix of type string resultItem.FixedPrefix = reader.GetString(6); //7:Parameter IsDeleted of type bool resultItem.IsDeleted = reader.GetBoolean(7); //8:Parameter Tenant_RefID of type Guid resultItem.Tenant_RefID = reader.GetGuid(8); //9:Parameter Formatting_LeadingFillCharacter of type string resultItem.Formatting_LeadingFillCharacter = reader.GetString(9); //10:Parameter Formatting_NumberLength of type int resultItem.Formatting_NumberLength = reader.GetInteger(10); results.Add(resultItem); } } catch (Exception ex) { reader.Close(); throw new Exception("Exception occured durng data retrieval in method cls_Get_NumberRange_For_NumberRangeID", ex); } reader.Close(); //Load all the dictionaries from the datatables loader.Load(); returnStatus.Result = results.FirstOrDefault(); return(returnStatus); }