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

            FR_Base functionReturn = new FR_Base();

            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_Update_ProjectNote_Collaborators", ex);
            }
            return(functionReturn);
        }
Exemple #2
0
 ///<summary>
 /// Opens the connection/transaction for the given connectionString, and closes them when complete
 ///<summary>
 public static FR_Base Invoke(string ConnectionString, P_L3N_UPNC_1521 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
 {
     return(Invoke(null, null, ConnectionString, Parameter, securityTicket));
 }
Exemple #3
0
 ///<summary>
 /// Invokes the method for the given Connection, and Transaction, leaving them open/not commited if no exceptions occured
 ///<summary>
 public static FR_Base Invoke(DbConnection Connection, DbTransaction Transaction, P_L3N_UPNC_1521 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
 {
     return(Invoke(Connection, Transaction, null, Parameter, securityTicket));
 }
Exemple #4
0
        protected static FR_Base Execute(DbConnection Connection, DbTransaction Transaction, P_L3N_UPNC_1521 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            //Leave UserCode region to enable user code saving
            #region UserCode
            var returnValue = new FR_Base();
            //Put your code here
            #region Remove existing collaborators
            ORM_TMS_PRO_Project_Note_Collaborators.Query noteCollaboratorsQuery = new ORM_TMS_PRO_Project_Note_Collaborators.Query();
            noteCollaboratorsQuery.ProjectNote_RefID = Parameter.ProjectNote_ID;
            ORM_TMS_PRO_Project_Note_Collaborators.Query.SoftDelete(Connection, Transaction, noteCollaboratorsQuery);
            #endregion

            #region Update new collaborators query
            if (Parameter.ProjectNote_Collaborators != null)
            {
                foreach (var currentCollaborator in Parameter.ProjectNote_Collaborators)
                {
                    ORM_TMS_PRO_Project_Note_Collaborators tempCollaboratorAssignment = new ORM_TMS_PRO_Project_Note_Collaborators();
                    tempCollaboratorAssignment.Account_RefID     = currentCollaborator;
                    tempCollaboratorAssignment.ProjectNote_RefID = Parameter.ProjectNote_ID;
                    tempCollaboratorAssignment.Tenant_RefID      = securityTicket.TenantID;
                    tempCollaboratorAssignment.Save(Connection, Transaction);
                }
            }
            #endregion


            return(returnValue);

            #endregion UserCode
        }