///<summary>
        /// Method Invocation of wrapper classes
        ///<summary>
        protected static FR_L5PR_GRPCfTID_1657_Array Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            bool cleanupConnection  = Connection == null;
            bool cleanupTransaction = Transaction == null;

            FR_L5PR_GRPCfTID_1657_Array functionReturn = new FR_L5PR_GRPCfTID_1657_Array();

            try
            {
                if (cleanupConnection == true)
                {
                    Connection = CSV2Core_MySQL.Support.DBSQLSupport.CreateConnection(ConnectionString);
                    Connection.Open();
                }
                if (cleanupTransaction == true)
                {
                    Transaction = Connection.BeginTransaction();
                }

                functionReturn = Execute(Connection, Transaction, 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_RequestProposals_Customer_for_TenantID", ex);
            }
            return(functionReturn);
        }
        protected static FR_L5PR_GRPCfTID_1657_Array Execute(DbConnection Connection, DbTransaction Transaction, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            var returnStatus = new FR_L5PR_GRPCfTID_1657_Array();

            DbCommand command = Connection.CreateCommand();

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

            List <L5PR_GRPCfTID_1657> results = new List <L5PR_GRPCfTID_1657>();
            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_PRO_Product_RefID", "IsReplacementPermitted", "Quantity", "DeliveryUntillDate", "ORD_CUO_RFO_RequestForProposal_HeaderID", "CompleteDeliveryUntillDate", "ProposalDeadline", "Comment", "IsEvent_ProposalResponse_Sent", "IsEvent_ProposalRequest_Received", "IsEvent_ProposalRequest_ReceptionAcknowledged", "IsEvent_ByCustomer_ProposalResponse_Declined", "IsEvent_ByCustomer_ProposalResponse_Accepted", "RequestingBusinessParticipant_RefID", "ORD_CUO_RFP_RequestForProposal_PositionID" });
                while (reader.Read())
                {
                    L5PR_GRPCfTID_1657 resultItem = new L5PR_GRPCfTID_1657();
                    //0:Parameter CMN_PRO_Product_RefID of type Guid
                    resultItem.CMN_PRO_Product_RefID = reader.GetGuid(0);
                    //1:Parameter IsReplacementPermitted of type bool
                    resultItem.IsReplacementPermitted = reader.GetBoolean(1);
                    //2:Parameter Quantity of type double
                    resultItem.Quantity = reader.GetDouble(2);
                    //3:Parameter DeliveryUntillDate of type DateTime
                    resultItem.DeliveryUntillDate = reader.GetDate(3);
                    //4:Parameter ORD_CUO_RFO_RequestForProposal_HeaderID of type Guid
                    resultItem.ORD_CUO_RFO_RequestForProposal_HeaderID = reader.GetGuid(4);
                    //5:Parameter CompleteDeliveryUntillDate of type DateTime
                    resultItem.CompleteDeliveryUntillDate = reader.GetDate(5);
                    //6:Parameter ProposalDeadline of type String
                    resultItem.ProposalDeadline = reader.GetString(6);
                    //7:Parameter Comment of type String
                    resultItem.Comment = reader.GetString(7);
                    //8:Parameter IsEvent_ProposalResponse_Sent of type bool
                    resultItem.IsEvent_ProposalResponse_Sent = reader.GetBoolean(8);
                    //9:Parameter IsEvent_ProposalRequest_Received of type bool
                    resultItem.IsEvent_ProposalRequest_Received = reader.GetBoolean(9);
                    //10:Parameter IsEvent_ProposalRequest_ReceptionAcknowledged of type bool
                    resultItem.IsEvent_ProposalRequest_ReceptionAcknowledged = reader.GetBoolean(10);
                    //11:Parameter IsEvent_ByCustomer_ProposalResponse_Declined of type bool
                    resultItem.IsEvent_ByCustomer_ProposalResponse_Declined = reader.GetBoolean(11);
                    //12:Parameter IsEvent_ByCustomer_ProposalResponse_Accepted of type bool
                    resultItem.IsEvent_ByCustomer_ProposalResponse_Accepted = reader.GetBoolean(12);
                    //13:Parameter RequestingBusinessParticipant_RefID of type Guid
                    resultItem.RequestingBusinessParticipant_RefID = reader.GetGuid(13);
                    //14:Parameter ORD_CUO_RFP_RequestForProposal_PositionID of type Guid
                    resultItem.ORD_CUO_RFP_RequestForProposal_PositionID = reader.GetGuid(14);

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

            returnStatus.Result = results.ToArray();
            return(returnStatus);
        }