///<summary> /// Method Invocation of wrapper classes ///<summary> protected static FR_L5PA_GPHIaBD_1536 Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L5PA_GPHIaBD_1536 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { bool cleanupConnection = Connection == null; bool cleanupTransaction = Transaction == null; FR_L5PA_GPHIaBD_1536 functionReturn = new FR_L5PA_GPHIaBD_1536(); 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_PatienHealthInsurance_and_BankData", ex); } return(functionReturn); }
protected static FR_L5PA_GPHIaBD_1536 Execute(DbConnection Connection, DbTransaction Transaction, P_L5PA_GPHIaBD_1536 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { var returnStatus = new FR_L5PA_GPHIaBD_1536(); DbCommand command = Connection.CreateCommand(); command.Connection = Connection; command.Transaction = Transaction; var commandLocation = "CL5_MyHealthClub_Patient.Atomic.Retrieval.SQL.cls_Get_PatienHealthInsurance_and_BankData.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, "PatientID", Parameter.PatientID); List <L5PA_GPHIaBD_1536> results = new List <L5PA_GPHIaBD_1536>(); 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[] { "HealthInsurance_Number", "InsuranceValidFrom", "InsuranceValidThrough", "IsNotSelfInsured", "IsNotSelfInsured_InsuredPersonName", "IsNotSelfInsured_InsuredPersonBirthday", "CompanyName", "AccountNumber", "OwnerText", "IBAN", "BICCode", "BankName", "HEC_Patient_HealthInsurance_StateID", "HEC_HealthInsurance_CompanyID" }); while (reader.Read()) { L5PA_GPHIaBD_1536 resultItem = new L5PA_GPHIaBD_1536(); //0:Parameter HealthInsurance_Number of type String resultItem.HealthInsurance_Number = reader.GetString(0); //1:Parameter InsuranceValidFrom of type DateTime resultItem.InsuranceValidFrom = reader.GetDate(1); //2:Parameter InsuranceValidThrough of type DateTime resultItem.InsuranceValidThrough = reader.GetDate(2); //3:Parameter IsNotSelfInsured of type bool resultItem.IsNotSelfInsured = reader.GetBoolean(3); //4:Parameter IsNotSelfInsured_InsuredPersonName of type String resultItem.IsNotSelfInsured_InsuredPersonName = reader.GetString(4); //5:Parameter IsNotSelfInsured_InsuredPersonBirthday of type DateTime resultItem.IsNotSelfInsured_InsuredPersonBirthday = reader.GetDate(5); //6:Parameter CompanyName of type String resultItem.CompanyName = reader.GetString(6); //7:Parameter AccountNumber of type String resultItem.AccountNumber = reader.GetString(7); //8:Parameter OwnerText of type String resultItem.OwnerText = reader.GetString(8); //9:Parameter IBAN of type String resultItem.IBAN = reader.GetString(9); //10:Parameter BICCode of type String resultItem.BICCode = reader.GetString(10); //11:Parameter BankName of type String resultItem.BankName = reader.GetString(11); //12:Parameter HEC_Patient_HealthInsurance_StateID of type Guid resultItem.HEC_Patient_HealthInsurance_StateID = reader.GetGuid(12); //13:Parameter HEC_HealthInsurance_CompanyID of type Guid resultItem.HEC_HealthInsurance_CompanyID = reader.GetGuid(13); results.Add(resultItem); } } catch (Exception ex) { reader.Close(); throw new Exception("Exception occured durng data retrieval in method cls_Get_PatienHealthInsurance_and_BankData", ex); } reader.Close(); //Load all the dictionaries from the datatables loader.Load(); returnStatus.Result = results.FirstOrDefault(); return(returnStatus); }