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

            FR_L3CR_GDLfT_1641 functionReturn = new FR_L3CR_GDLfT_1641();

            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_Default_Language_For_Tenant", ex);
            }
            return(functionReturn);
        }
        protected static FR_L3CR_GDLfT_1641 Execute(DbConnection Connection, DbTransaction Transaction, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            //Leave UserCode region to enable user code saving
            #region UserCode
            var returnValue = new FR_L3CR_GDLfT_1641();

            ORM_CMN_BPT_BusinessParticipant businesParticipant = ORM_CMN_BPT_BusinessParticipant.Query.Search(Connection, Transaction, new ORM_CMN_BPT_BusinessParticipant.Query()
            {
                IsDeleted             = false,
                Tenant_RefID          = securityTicket.TenantID,
                IfTenant_Tenant_RefID = securityTicket.TenantID
            }).FirstOrDefault();

            if (businesParticipant == null)
            {
                returnValue.ErrorMessage = String.Format("BusinessParticipant could not be found for tenant {0}", securityTicket.TenantID.ToString());
                returnValue.Status       = FR_Status.Error_Internal;
                return(returnValue);
            }


            Guid             defaultLanguageId = businesParticipant.DefaultLanguage_RefID;
            ORM_CMN_Language defaultLanguage   = null;

            if (defaultLanguageId != Guid.Empty)
            {
                defaultLanguage = ORM_CMN_Language.Query.Search(Connection, Transaction, new ORM_CMN_Language.Query()
                {
                    IsDeleted      = false,
                    Tenant_RefID   = securityTicket.TenantID,
                    CMN_LanguageID = defaultLanguageId
                }).FirstOrDefault();
            }

            returnValue.Result = new L3CR_GDLfT_1641();
            returnValue.Result.DefaultLanguage = defaultLanguage;


            return(returnValue);

            #endregion UserCode
        }