Ejemplo n.º 1
0
 ///<summary>
 /// Invokes the method for the given Connection, and Transaction, leaving them open/not commited if no exceptions occured
 ///<summary>
 public static FR_L6DT_GDTIaIWTfDTaACC_1259 Invoke(DbConnection Connection, DbTransaction Transaction, P_L6DT_GDTIaIWTfDTaACC_1259 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
 {
     return(Invoke(Connection, Transaction, null, Parameter, securityTicket));
 }
Ejemplo n.º 2
0
        protected static FR_L6DT_GDTIaIWTfDTaACC_1259 Execute(DbConnection Connection, DbTransaction Transaction, P_L6DT_GDTIaIWTfDTaACC_1259 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            #region UserCode
            var returnValue = new FR_L6DT_GDTIaIWTfDTaACC_1259();
            //Put your code here
            L6DT_GDTIaIWTfDTaACC_1259 temp = new L6DT_GDTIaIWTfDTaACC_1259();
            P_L6DT_GDTIfDT_1505       parDeveloperTaskInfo = new P_L6DT_GDTIfDT_1505();
            parDeveloperTaskInfo.TaskID = Parameter.DeveloperTaskID;
            parDeveloperTaskInfo.IsBeingPrepared_Only = false;
            L6DT_GDTIfDT_1505 developerTaskInfo = cls_Get_DeveloperTaskInfo_for_DeveloperTaskID.Invoke(Connection, Transaction, parDeveloperTaskInfo, securityTicket).Result;
            temp.DeveloperTaskInfo = developerTaskInfo;

            P_L3DT_GRIfDTID_1408 parameterRecommendations = new P_L3DT_GRIfDTID_1408();
            parameterRecommendations.DTaskID = Parameter.DeveloperTaskID;
            temp.Recommendations             = cls_Get_RecommendationsInfo_for_DeveloperTaskID.Invoke(Connection, Transaction, parameterRecommendations, securityTicket).Result;

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

            List <L6DT_GDTIaIWTfDTaACC_1259a> tempStatusHistoryList = new List <L6DT_GDTIaIWTfDTaACC_1259a>();
            foreach (var currentStatusItem in statusHistoryList)
            {
                tempStatusHistoryList.Add(new L6DT_GDTIaIWTfDTaACC_1259a()
                {
                    Status_ID   = currentStatusItem.DeveloperTask_Status_RefID,
                    Status_Name = currentStatusItem.Label,
                    Status_GlobalPropertyMatchingID = currentStatusItem.GlobalPropertyMatchingID,
                    Status_TimeStamp = currentStatusItem.Creation_Timestamp
                });
            }
            temp.StatusHistory = tempStatusHistoryList.ToArray();

            returnValue.Result = temp;
            return(returnValue);

            #endregion UserCode
        }
Ejemplo n.º 3
0
 ///<summary>
 /// Opens the connection/transaction for the given connectionString, and closes them when complete
 ///<summary>
 public static FR_L6DT_GDTIaIWTfDTaACC_1259 Invoke(string ConnectionString, P_L6DT_GDTIaIWTfDTaACC_1259 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
 {
     return(Invoke(null, null, ConnectionString, Parameter, securityTicket));
 }
Ejemplo n.º 4
0
        ///<summary>
        /// Method Invocation of wrapper classes
        ///<summary>
        protected static FR_L6DT_GDTIaIWTfDTaACC_1259 Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L6DT_GDTIaIWTfDTaACC_1259 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            bool cleanupConnection  = Connection == null;
            bool cleanupTransaction = Transaction == null;

            FR_L6DT_GDTIaIWTfDTaACC_1259 functionReturn = new FR_L6DT_GDTIaIWTfDTaACC_1259();

            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_DTaskInfo_and_InvestedWorkTime_for_DTaskID_and_AccountID", ex);
            }
            return(functionReturn);
        }