///<summary> /// Method Invocation of wrapper classes ///<summary> protected static FR_L6PR_GACLfPMTID_1126_Array Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L6PR_GACLfPMTID_1126 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { bool cleanupConnection = Connection == null; bool cleanupTransaction = Transaction == null; FR_L6PR_GACLfPMTID_1126_Array functionReturn = new FR_L6PR_GACLfPMTID_1126_Array(); 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_AvailableChargingLevels_for_ProjectMemberTypeID", ex); } return(functionReturn); }
///<summary> /// Opens the connection/transaction for the given connectionString, and closes them when complete ///<summary> public static FR_L6PR_GACLfPMTID_1126_Array Invoke(string ConnectionString, P_L6PR_GACLfPMTID_1126 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { return(Invoke(null, null, ConnectionString, Parameter, securityTicket)); }
///<summary> /// Invokes the method for the given Connection, and Transaction, leaving them open/not commited if no exceptions occured ///<summary> public static FR_L6PR_GACLfPMTID_1126_Array Invoke(DbConnection Connection, DbTransaction Transaction, P_L6PR_GACLfPMTID_1126 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { return(Invoke(Connection, Transaction, null, Parameter, securityTicket)); }
protected static FR_L6PR_GACLfPMTID_1126_Array Execute(DbConnection Connection, DbTransaction Transaction, P_L6PR_GACLfPMTID_1126 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { #region UserCode var returnValue = new FR_L6PR_GACLfPMTID_1126_Array(); //Put your code here List <L6PR_GACLfPMTID_1126> ChargingLevelsForTypes = new List <L6PR_GACLfPMTID_1126>(); foreach (var item in Parameter.ProjectMemberTypeIDs) { L6PR_GACLfPMTID_1126 ChargingLevelsForType = new L6PR_GACLfPMTID_1126(); P_L6PR_GCLfPMTID_1531 ChargingLevelsForTypeParameter = new P_L6PR_GCLfPMTID_1531(); ChargingLevelsForTypeParameter.ProjectMemberID = item; var chargingLevels = cls_Get_ChargingLevels_for_ProjectMemberTypeID.Invoke(Connection, Transaction, ChargingLevelsForTypeParameter, securityTicket).Result; ChargingLevelsForType.ProjectMember_TypeID = item; ChargingLevelsForType.ProjectMemberAvailableChargingLevels = chargingLevels; ChargingLevelsForTypes.Add(ChargingLevelsForType); } returnValue.Result = ChargingLevelsForTypes.ToArray(); return(returnValue); #endregion UserCode }