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

            FR_L3US_GNIWTI_1706 functionReturn = new FR_L3US_GNIWTI_1706();

            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_NewInvestedWTimeIdentifier", ex);
            }
            return(functionReturn);
        }
        protected static FR_L3US_GNIWTI_1706 Execute(DbConnection Connection, DbTransaction Transaction, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            #region UserCode
            var returnValue = new FR_L3US_GNIWTI_1706();
            returnValue.Result = new L3US_GNIWTI_1706();

            ORM_CMN_BPT_InvestedWorkTime.Query query = new ORM_CMN_BPT_InvestedWorkTime.Query();
            query.Tenant_RefID = securityTicket.TenantID;
            var count = ORM_CMN_BPT_InvestedWorkTime.Query.Search(Connection, Transaction, query).Count() + 1;

            String identifier = "0000000000" + count.ToString();

            identifier = identifier.Substring(identifier.Length - 10);

            returnValue.Result = new L3US_GNIWTI_1706();

            returnValue.Result.Identifier = identifier;

            return(returnValue);

            #endregion UserCode
        }