///<summary> /// Method Invocation of wrapper classes ///<summary> protected static FR_L5OD_GDaDSfDG_1146 Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L5OD_GDaDSfDG_1146 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { bool cleanupConnection = Connection == null; bool cleanupTransaction = Transaction == null; FR_L5OD_GDaDSfDG_1146 functionReturn = new FR_L5OD_GDaDSfDG_1146(); 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_Documents_and_DocumentStructures_for_DHeaderID", ex); } return(functionReturn); }
protected static FR_L5OD_GDaDSfDG_1146 Execute(DbConnection Connection, DbTransaction Transaction, P_L5OD_GDaDSfDG_1146 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { //Leave UserCode region to enable user code saving #region UserCode var returnValue = new FR_L5OD_GDaDSfDG_1146(); P_L3DO_GDfDH_1108 param1 = new P_L3DO_GDfDH_1108(); param1.DHeaderID = Parameter.DHeaderID; L3DO_GDfDH_1108[] docStructures = cls_Get_DocumentStructures_for_DHeaderID.Invoke(Connection, Transaction, param1, securityTicket).Result; P_L3DO_GDfDH_1133 param2 = new P_L3DO_GDfDH_1133(); param2.DHeaderID = Parameter.DHeaderID; L3DO_GDfDH_1133[] document = cls_Get_Documents_for_DHeaderID.Invoke(Connection, Transaction, param2, securityTicket).Result; returnValue.Result = new L5OD_GDaDSfDG_1146(); returnValue.Result.DocumentStructures = docStructures; returnValue.Result.Documents = document; return(returnValue); #endregion UserCode }