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

            FR_L5IN_GADfFIP_1417 functionReturn = new FR_L5IN_GADfFIP_1417();

            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_AllData_for_FullInventoryPage", ex);
            }
            return(functionReturn);
        }
        protected static FR_L5IN_GADfFIP_1417 Execute(DbConnection Connection, DbTransaction Transaction, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            #region UserCode
            var returnValue = new FR_L5IN_GADfFIP_1417();
            //Put your code here
            var inventoryJobs = cls_Get_InventoryJobs_for_TenantID.Invoke(Connection, Transaction, securityTicket).Result;

            var countedShelf = cls_Get_CountedShelfContent_for_TenantID.Invoke(Connection, Transaction, securityTicket).Result;
            var totalShelf   = cls_Get_TotalShelfContent_for_TenantID.Invoke(Connection, Transaction, securityTicket).Result;

            returnValue.Result = new L5IN_GADfFIP_1417();

            List <L5IN_GADfFIP_1417a> returnList = new List <L5IN_GADfFIP_1417a>();

            foreach (var job in inventoryJobs)
            {
                L5IN_GADfFIP_1417a returnItem = new L5IN_GADfFIP_1417a();
                returnItem.InvetoryJob = job;
                var temp = countedShelf.Where(x => x.LOG_WRH_INJ_InventoryJob_RefID == job.LOG_WRH_INJ_InventoryJobID).SingleOrDefault();
                if (temp != null)
                {
                    returnItem.TotalShelf   = totalShelf.Where(x => x.LOG_WRH_INJ_InventoryJob_RefID == job.LOG_WRH_INJ_InventoryJobID).SingleOrDefault().TotalCount;
                    returnItem.CountedShelf = temp.CountedShelfContentForInventory;
                    returnItem.Percentage   = MathUtil.CountProcent(returnItem.CountedShelf, returnItem.TotalShelf);
                }
                else
                {
                    returnItem.TotalShelf   = 0;
                    returnItem.CountedShelf = 0;
                    returnItem.Percentage   = 0;
                }

                returnList.Add(returnItem);
            }

            returnValue.Result.Jobs = returnList.ToArray();
            return(returnValue);

            #endregion UserCode
        }