protected static FR_L6PA_GMSPSIfT_1542_Array Execute(DbConnection Connection, DbTransaction Transaction, P_L6PA_GMSPSIfT_1542 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            var returnStatus = new FR_L6PA_GMSPSIfT_1542_Array();

            DbCommand command = Connection.CreateCommand();

            command.Connection  = Connection;
            command.Transaction = Transaction;
            var commandLocation = "CL6_MS_Patient.Atomic.Retrieval.SQL.cls_Get_MS_PatientsSimpleInfo_for_Tenant.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, "IncludeOnlyConfirmedPolicy", Parameter.IncludeOnlyConfirmedPolicy);



            List <L6PA_GMSPSIfT_1542> results = new List <L6PA_GMSPSIfT_1542>();
            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[] { "USR_AccountID", "HEC_PatientID", "FirstName", "LastName", "Salutation_General", "CMN_BPT_BusinessParticipantID", "HealthInsurance_Number", "IsPatientParticipationPolicyValidated" });
                while (reader.Read())
                {
                    L6PA_GMSPSIfT_1542 resultItem = new L6PA_GMSPSIfT_1542();
                    //0:Parameter USR_AccountID of type Guid
                    resultItem.USR_AccountID = reader.GetGuid(0);
                    //1:Parameter HEC_PatientID of type Guid
                    resultItem.HEC_PatientID = reader.GetGuid(1);
                    //2:Parameter FirstName of type String
                    resultItem.FirstName = reader.GetString(2);
                    //3:Parameter LastName of type String
                    resultItem.LastName = reader.GetString(3);
                    //4:Parameter Salutation_General of type String
                    resultItem.Salutation_General = reader.GetString(4);
                    //5:Parameter CMN_BPT_BusinessParticipantID of type Guid
                    resultItem.CMN_BPT_BusinessParticipantID = reader.GetGuid(5);
                    //6:Parameter HealthInsurance_Number of type String
                    resultItem.HealthInsurance_Number = reader.GetString(6);
                    //7:Parameter IsPatientParticipationPolicyValidated of type bool
                    resultItem.IsPatientParticipationPolicyValidated = reader.GetBoolean(7);

                    results.Add(resultItem);
                }
            }
            catch (Exception ex)
            {
                reader.Close();
                throw new Exception("Exception occured durng data retrieval in method cls_Get_MS_PatientsSimpleInfo_for_Tenant", ex);
            }
            reader.Close();
            //Load all the dictionaries from the datatables
            loader.Load();

            returnStatus.Result = results.ToArray();
            return(returnStatus);
        }
        ///<summary>
        /// Method Invocation of wrapper classes
        ///<summary>
        protected static FR_L6PA_GMSPSIfT_1542_Array Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L6PA_GMSPSIfT_1542 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            bool cleanupConnection  = Connection == null;
            bool cleanupTransaction = Transaction == null;

            FR_L6PA_GMSPSIfT_1542_Array functionReturn = new FR_L6PA_GMSPSIfT_1542_Array();

            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_MS_PatientsSimpleInfo_for_Tenant", ex);
            }
            return(functionReturn);
        }