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

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

            DbCommand command = Connection.CreateCommand();

            command.Connection  = Connection;
            command.Transaction = Transaction;
            var commandLocation = "CL2_DeveloperTask.Atomic.Retrieval.SQL.cls_Get_DeveloperTask_Priorities_for_Tenant_and_Acount.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 <L2_DT_GDTSfTaA_1337> results = new List <L2_DT_GDTSfTaA_1337>();
            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_DeveloperTask_PriorityID", "Label_DictID", "Description_DictID", "IconLocationURL", "Groups", "PriorityLevel", "IsPersistent", "Creation_Timestamp", "Tenant_RefID", "IsDeleted", "Priority_Colour", "GlobalPropertyMatchingID" });
                while (reader.Read())
                {
                    L2_DT_GDTSfTaA_1337 resultItem = new L2_DT_GDTSfTaA_1337();
                    //0:Parameter TMS_PRO_DeveloperTask_PriorityID of type Guid
                    resultItem.TMS_PRO_DeveloperTask_PriorityID = reader.GetGuid(0);
                    //1:Parameter Label of type Dict
                    resultItem.Label             = reader.GetDictionary(1);
                    resultItem.Label.SourceTable = "tms_pro_developertask_priorities";
                    loader.Append(resultItem.Label);
                    //2:Parameter Description of type Dict
                    resultItem.Description             = reader.GetDictionary(2);
                    resultItem.Description.SourceTable = "tms_pro_developertask_priorities";
                    loader.Append(resultItem.Description);
                    //3:Parameter IconLocationURL of type String
                    resultItem.IconLocationURL = reader.GetString(3);
                    //4:Parameter Groups of type String
                    resultItem.Groups = reader.GetString(4);
                    //5:Parameter PriorityLevel of type String
                    resultItem.PriorityLevel = reader.GetString(5);
                    //6:Parameter IsPersistent of type bool
                    resultItem.IsPersistent = reader.GetBoolean(6);
                    //7:Parameter Creation_Timestamp of type DateTime
                    resultItem.Creation_Timestamp = reader.GetDate(7);
                    //8:Parameter Tenant_RefID of type Guid
                    resultItem.Tenant_RefID = reader.GetGuid(8);
                    //9:Parameter IsDeleted of type bool
                    resultItem.IsDeleted = reader.GetBoolean(9);
                    //10:Parameter Priority_Colour of type String
                    resultItem.Priority_Colour = reader.GetString(10);
                    //11:Parameter GlobalPropertyMatchingID of type String
                    resultItem.GlobalPropertyMatchingID = reader.GetString(11);

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

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