protected static FR_CAS_GNON_1331 Execute(DbConnection Connection, DbTransaction Transaction, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { //Leave UserCode region to enable user code saving #region UserCode var returnValue = new FR_CAS_GNON_1331(); //Put your code here var latest_order = cls_Get_Latest_Order_Number.Invoke(Connection, Transaction, securityTicket).Result; var order_number = "000000000000"; if (latest_order != null) { order_number += string.IsNullOrEmpty(latest_order.latest_order_number) ? "1" : (int.Parse(latest_order.latest_order_number) + 1).ToString(); order_number = order_number.Substring(order_number.Length - 12, 12); } else { order_number = "000000000001"; } returnValue.Result = new CAS_GNON_1331(); returnValue.Result.order_number = order_number; return(returnValue); #endregion UserCode }
///<summary> /// Method Invocation of wrapper classes ///<summary> protected static FR_CAS_GNON_1331 Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null) { bool cleanupConnection = Connection == null; bool cleanupTransaction = Transaction == null; FR_CAS_GNON_1331 functionReturn = new FR_CAS_GNON_1331(); try { if (cleanupConnection == true) { Connection = CSV2Core_MySQL.Support.DBSQLSupport.CreateConnection(ConnectionString); Connection.Open(); } if (cleanupTransaction == true) { Transaction = Connection.BeginTransaction(); } functionReturn = Execute(Connection, Transaction, 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_Next_Order_Number", ex); } return(functionReturn); }