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

            FR_L6PR_GPaRPfA_1351_Array functionReturn = new FR_L6PR_GPaRPfA_1351_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_Project_and_RightsPackage_for_Account", ex);
            }
            return(functionReturn);
        }
 ///<summary>
 /// Opens the connection/transaction for the given connectionString, and closes them when complete
 ///<summary>
 public static FR_L6PR_GPaRPfA_1351_Array Invoke(string ConnectionString, P_L6PR_GPaRPfA_1351 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
 {
     return(Invoke(null, null, ConnectionString, Parameter, securityTicket));
 }
 ///<summary>
 /// Invokes the method for the given Connection, and Transaction, leaving them open/not commited if no exceptions occured
 ///<summary>
 public static FR_L6PR_GPaRPfA_1351_Array Invoke(DbConnection Connection, DbTransaction Transaction, P_L6PR_GPaRPfA_1351 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
 {
     return(Invoke(Connection, Transaction, null, Parameter, securityTicket));
 }
        protected static FR_L6PR_GPaRPfA_1351_Array Execute(DbConnection Connection, DbTransaction Transaction, P_L6PR_GPaRPfA_1351 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            #region UserCode
            var returnValue = new FR_L6PR_GPaRPfA_1351_Array();
            //Put your code here
            //List<L2PR_GaPfA_1017> ProjectsAndProjectMembers = new List<L2PR_GaPfA_1017>();
            P_L2PR_GaPfA_1017 projectForAccountParameter = new P_L2PR_GaPfA_1017();
            projectForAccountParameter.UserAccountID = Parameter.UserAccount_ID;
            var ProjectsAndProjectMembers = cls_Get_All_Projects_for_Account.Invoke(Connection, Transaction, projectForAccountParameter, securityTicket).Result.ToList();
            var g = securityTicket.TenantID;
            List <L6PR_GPaRPfA_1351> result = new List <L6PR_GPaRPfA_1351>();
            foreach (var item in ProjectsAndProjectMembers)
            {
                L6PR_GPaRPfA_1351 projectAndRightPackageForAccount = new L6PR_GPaRPfA_1351();
                projectAndRightPackageForAccount.ProjectName             = item.Name;
                projectAndRightPackageForAccount.TMS_PRO_ProjectID       = item.TMS_PRO_ProjectID;
                projectAndRightPackageForAccount.TMS_PRO_ProjectMemberID = item.TMS_PRO_ProjectMemberID;
                P_L3PR_GRPfPM_1029 rightsPackageParametersForProjMemberParameter = new P_L3PR_GRPfPM_1029();
                rightsPackageParametersForProjMemberParameter.ProjectMemberID = item.TMS_PRO_ProjectMemberID;
                var rightsPackageParametersForProjMemberResult = cls_Get_RightPackages_for_ProjectMemberID.Invoke(Connection, Transaction, rightsPackageParametersForProjMemberParameter, securityTicket).Result;
                projectAndRightPackageForAccount.RightPackage = rightsPackageParametersForProjMemberResult;
                result.Add(projectAndRightPackageForAccount);
            }
            returnValue.Result = result.ToArray();
            return(returnValue);

            #endregion UserCode
        }