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

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

            DbCommand command = Connection.CreateCommand();

            command.Connection  = Connection;
            command.Transaction = Transaction;
            var commandLocation = "CL3_DeveloperTask.Atomic.Retrieval.SQL.cls_Get_DeveloperTasks_SimpleView_for_ProjectIDList.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]*@ProjectIDList", " IN $$ProjectIDList$$");
            CSV2Core_MySQL.Support.DBSQLSupport.AppendINStatement(command, "$ProjectIDList$", Parameter.ProjectIDList);
            CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "Is_ArchivedTasks_Included", Parameter.Is_ArchivedTasks_Included);

            CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "ShowOnly_IncompleteInfo", Parameter.ShowOnly_IncompleteInfo);

            CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "ShowOnly_CompletedTasks", Parameter.ShowOnly_CompletedTasks);



            List <L3DT_GDTSVfPL_1458> results = new List <L3DT_GDTSVfPL_1458>();
            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[] { "TMS_PRO_DeveloperTaskID", "IdentificationNumber", "DOC_Structure_Header_RefID", "Project_RefID", "Name", "IsArchived", "IsComplete", "IsIncompleteInformation", "Feature_RefID", "IsBeingPrepared", "GrabbedByMember_RefID", "USR_Account_RefID" });
                while (reader.Read())
                {
                    L3DT_GDTSVfPL_1458 resultItem = new L3DT_GDTSVfPL_1458();
                    //0:Parameter TMS_PRO_DeveloperTaskID of type Guid
                    resultItem.TMS_PRO_DeveloperTaskID = reader.GetGuid(0);
                    //1:Parameter IdentificationNumber of type String
                    resultItem.IdentificationNumber = reader.GetString(1);
                    //2:Parameter DOC_Structure_Header_RefID of type Guid
                    resultItem.DOC_Structure_Header_RefID = reader.GetGuid(2);
                    //3:Parameter Project_RefID of type Guid
                    resultItem.Project_RefID = reader.GetGuid(3);
                    //4:Parameter Name of type String
                    resultItem.Name = reader.GetString(4);
                    //5:Parameter IsArchived of type bool
                    resultItem.IsArchived = reader.GetBoolean(5);
                    //6:Parameter IsComplete of type bool
                    resultItem.IsComplete = reader.GetBoolean(6);
                    //7:Parameter IsIncompleteInformation of type Boolean
                    resultItem.IsIncompleteInformation = reader.GetBoolean(7);
                    //8:Parameter Feature_RefID of type Guid
                    resultItem.Feature_RefID = reader.GetGuid(8);
                    //9:Parameter IsBeingPrepared of type Boolean
                    resultItem.IsBeingPrepared = reader.GetBoolean(9);
                    //10:Parameter GrabbedByMember_RefID of type Guid
                    resultItem.GrabbedByMember_RefID = reader.GetGuid(10);
                    //11:Parameter USR_Account_RefID of type Guid
                    resultItem.USR_Account_RefID = reader.GetGuid(11);

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

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