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

            FR_L6DT_GDTSHaIWTfDT_0913 functionReturn = new FR_L6DT_GDTSHaIWTfDT_0913();

            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_DTStatusHistory_and_InvestedWorkTime_for_DeveloperTaskID", ex);
            }
            return(functionReturn);
        }
        protected static FR_L6DT_GDTSHaIWTfDT_0913 Execute(DbConnection Connection, DbTransaction Transaction, P_L6DT_GDTSHaIWTfDT_0913 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            #region UserCode
            var returnValue             = new FR_L6DT_GDTSHaIWTfDT_0913();
            L6DT_GDTSHaIWTfDT_0913 temp = new L6DT_GDTSHaIWTfDT_0913();

            P_L6DT_GDTSHfDT_1646 parStatusHistory = new P_L6DT_GDTSHfDT_1646();
            parStatusHistory.DeveloperTaskID = Parameter.DeveloperTaskID;
            List <L6DT_GDTSHfDT_1646> lstStatusHistory = cls_Get_DeveloperTaskStatusHistory_for_DeveloperTaskID.Invoke(Connection, Transaction, parStatusHistory, securityTicket).Result.ToList();

            P_L6DT_GIWTfDT_1649 parInvestedTIme = new P_L6DT_GIWTfDT_1649();
            parInvestedTIme.DeveloperTaskID = Parameter.DeveloperTaskID;
            List <L6DT_GIWTfDT_1649> investedWorkTime = cls_Get_InvestedWorkTime_for_DeveloperTaskID.Invoke(Connection, Transaction, parInvestedTIme, securityTicket).Result.ToList();
            temp.InvestedWorkTime = investedWorkTime.Sum(x => x.InvestedWorkTime);

            temp.StatusHistory = lstStatusHistory.ToArray();

            returnValue.Result = temp;

            return(returnValue);

            #endregion UserCode
        }