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

            DbCommand command = Connection.CreateCommand();

            command.Connection  = Connection;
            command.Transaction = Transaction;
            var commandLocation = "CL6_Lucenits_Treatments.Atomic.Retrieval.SQL.cls_Get_Followups_for_Report_byIDs.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;

            command.CommandText = System.Text.RegularExpressions.Regex.Replace(command.CommandText, "=[ \t]*@TreatmentIDs", " IN $$TreatmentIDs$$");
            CSV2Core_MySQL.Support.DBSQLSupport.AppendINStatement(command, "$TreatmentIDs$", Parameter.TreatmentIDs);


            List <L6TR_GFTfRbIDs_1646> results = new List <L6TR_GFTfRbIDs_1646>();
            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[] { "IfTreatmentFollowup_FromTreatment_RefID", "HEC_Patient_TreatmentID", "IsTreatmentPerformed", "IfTreatmentPerformed_Date", "IfTreatmentPerformed_ByDoctor_RefID", "DisplayName", "DoctorFirstName", "DoctorLastname", "DoctorTitle", "IsScheduled", "IsTreatmentBilled", "IfSheduled_Date", "IfTreatmentBilled_Date" });
                while (reader.Read())
                {
                    L6TR_GFTfRbIDs_1646 resultItem = new L6TR_GFTfRbIDs_1646();
                    //0:Parameter IfTreatmentFollowup_FromTreatment_RefID of type Guid
                    resultItem.IfTreatmentFollowup_FromTreatment_RefID = reader.GetGuid(0);
                    //1:Parameter HEC_Patient_TreatmentID of type Guid
                    resultItem.HEC_Patient_TreatmentID = reader.GetGuid(1);
                    //2:Parameter IsTreatmentPerformed of type bool
                    resultItem.IsTreatmentPerformed = reader.GetBoolean(2);
                    //3:Parameter IfTreatmentPerformed_Date of type DateTime
                    resultItem.IfTreatmentPerformed_Date = reader.GetDate(3);
                    //4:Parameter IfTreatmentPerformed_ByDoctor_RefID of type Guid
                    resultItem.IfTreatmentPerformed_ByDoctor_RefID = reader.GetGuid(4);
                    //5:Parameter DisplayName of type String
                    resultItem.DisplayName = reader.GetString(5);
                    //6:Parameter DoctorFirstName of type String
                    resultItem.DoctorFirstName = reader.GetString(6);
                    //7:Parameter DoctorLastname of type String
                    resultItem.DoctorLastname = reader.GetString(7);
                    //8:Parameter DoctorTitle of type String
                    resultItem.DoctorTitle = reader.GetString(8);
                    //9:Parameter IsScheduled of type bool
                    resultItem.IsScheduled = reader.GetBoolean(9);
                    //10:Parameter IsTreatmentBilled of type bool
                    resultItem.IsTreatmentBilled = reader.GetBoolean(10);
                    //11:Parameter IfSheduled_Date of type DateTime
                    resultItem.IfSheduled_Date = reader.GetDate(11);
                    //12:Parameter IfTreatmentBilled_Date of type DateTime
                    resultItem.IfTreatmentBilled_Date = reader.GetDate(12);

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

            returnStatus.Result = results.ToArray();
            return(returnStatus);
        }
 ///<summary>
 /// Invokes the method for the given Connection, and Transaction, leaving them open/not commited if no exceptions occured
 ///<summary>
 public static FR_L6TR_GFTfRbIDs_1646_Array Invoke(DbConnection Connection, DbTransaction Transaction, P_L6TR_GFTfRbIDs_1646 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
 {
     return(Invoke(Connection, Transaction, null, Parameter, securityTicket));
 }
        ///<summary>
        /// Method Invocation of wrapper classes
        ///<summary>
        protected static FR_L6TR_GFTfRbIDs_1646_Array Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L6TR_GFTfRbIDs_1646 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            bool cleanupConnection  = Connection == null;
            bool cleanupTransaction = Transaction == null;

            FR_L6TR_GFTfRbIDs_1646_Array functionReturn = new FR_L6TR_GFTfRbIDs_1646_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_Followups_for_Report_byIDs", ex);
            }
            return(functionReturn);
        }
 ///<summary>
 /// Opens the connection/transaction for the given connectionString, and closes them when complete
 ///<summary>
 public static FR_L6TR_GFTfRbIDs_1646_Array Invoke(string ConnectionString, P_L6TR_GFTfRbIDs_1646 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
 {
     return(Invoke(null, null, ConnectionString, Parameter, securityTicket));
 }