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

            DbCommand command = Connection.CreateCommand();

            command.Connection  = Connection;
            command.Transaction = Transaction;
            var commandLocation = "CL5_APOLogistic_StockReceipt.Atomic.Retrieval.SQL.cls_Get_StockReceipt_for_HeaderID.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, "HeaderID", Parameter.HeaderID);



            List <L5ALSR_GSRfH_1045_raw> results = new List <L5ALSR_GSRfH_1045_raw>();
            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[] { "LOG_RCP_Receipt_HeaderID", "SupplierID", "SupplierName", "ExpectedDeliveryDate", "LOG_RCP_Receipt_PositionID", "Product_Name_DictID", "Product_Number", "DosageForm_Name_DictID", "GlobalPropertyMatchingID", "Abbreviation_DictID", "ISOCode", "AEK_Price", "Position_ValuePerUnit", "PackageContent_Amount", "Position_Quantity", "TotalQuantityTakenIntoStock", "Position_ValueTotal", "BatchNumber", "ExpiryDate" });
                while (reader.Read())
                {
                    L5ALSR_GSRfH_1045_raw resultItem = new L5ALSR_GSRfH_1045_raw();
                    //0:Parameter LOG_RCP_Receipt_HeaderID of type Guid
                    resultItem.LOG_RCP_Receipt_HeaderID = reader.GetGuid(0);
                    //1:Parameter SupplierID of type Guid
                    resultItem.SupplierID = reader.GetGuid(1);
                    //2:Parameter SupplierName of type String
                    resultItem.SupplierName = reader.GetString(2);
                    //3:Parameter ExpectedDeliveryDate of type DateTime
                    resultItem.ExpectedDeliveryDate = reader.GetDate(3);
                    //4:Parameter LOG_RCP_Receipt_PositionID of type Guid
                    resultItem.LOG_RCP_Receipt_PositionID = reader.GetGuid(4);
                    //5:Parameter Product_Name of type Dict
                    resultItem.Product_Name             = reader.GetDictionary(5);
                    resultItem.Product_Name.SourceTable = "cmn_pro_products";
                    loader.Append(resultItem.Product_Name);
                    //6:Parameter Product_Number of type String
                    resultItem.Product_Number = reader.GetString(6);
                    //7:Parameter DosageForm_Name of type Dict
                    resultItem.DosageForm_Name             = reader.GetDictionary(7);
                    resultItem.DosageForm_Name.SourceTable = "hec_product_dosageforms";
                    loader.Append(resultItem.DosageForm_Name);
                    //8:Parameter GlobalPropertyMatchingID of type String
                    resultItem.GlobalPropertyMatchingID = reader.GetString(8);
                    //9:Parameter Abbreviation of type Dict
                    resultItem.Abbreviation             = reader.GetDictionary(9);
                    resultItem.Abbreviation.SourceTable = "cmn_units";
                    loader.Append(resultItem.Abbreviation);
                    //10:Parameter ISOCode of type String
                    resultItem.ISOCode = reader.GetString(10);
                    //11:Parameter AEK_Price of type double
                    resultItem.AEK_Price = reader.GetDouble(11);
                    //12:Parameter Position_ValuePerUnit of type double
                    resultItem.Position_ValuePerUnit = reader.GetDouble(12);
                    //13:Parameter PackageContent_Amount of type double
                    resultItem.PackageContent_Amount = reader.GetDouble(13);
                    //14:Parameter Position_Quantity of type double
                    resultItem.Position_Quantity = reader.GetDouble(14);
                    //15:Parameter TotalQuantityTakenIntoStock of type double
                    resultItem.TotalQuantityTakenIntoStock = reader.GetDouble(15);
                    //16:Parameter Position_ValueTotal of type double
                    resultItem.Position_ValueTotal = reader.GetDouble(16);
                    //17:Parameter BatchNumber of type String
                    resultItem.BatchNumber = reader.GetString(17);
                    //18:Parameter ExpiryDate of type DateTime
                    resultItem.ExpiryDate = reader.GetDate(18);

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

            returnStatus.Result = L5ALSR_GSRfH_1045_raw.Convert(results).FirstOrDefault();

            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_L5ALSR_GSRfH_1045 Invoke(DbConnection Connection, DbTransaction Transaction, P_L5ALSR_GSRfH_1045 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
 {
     return(Invoke(Connection, Transaction, null, Parameter, securityTicket));
 }
        ///<summary>
        /// Method Invocation of wrapper classes
        ///<summary>
        protected static FR_L5ALSR_GSRfH_1045 Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L5ALSR_GSRfH_1045 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            bool cleanupConnection  = Connection == null;
            bool cleanupTransaction = Transaction == null;

            FR_L5ALSR_GSRfH_1045 functionReturn = new FR_L5ALSR_GSRfH_1045();

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