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

            FR_L5BL_GPDfB_1119 functionReturn = new FR_L5BL_GPDfB_1119();

            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_PreloadingData_for_BillCreation", ex);
            }
            return(functionReturn);
        }
Example #2
0
        protected static FR_L5BL_GPDfB_1119 Execute(DbConnection Connection, DbTransaction Transaction, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            #region UserCode
            var returnValue = new FR_L5BL_GPDfB_1119();
            returnValue.Result = new L5BL_GPDfB_1119();
            //Put your code here
            returnValue.Result.PaymentTypes     = CL2_AccountingPayment.Atomic.Retrieval.cls_Get_AllPaymentTypes_For_TenandID.Invoke(Connection, Transaction, securityTicket).Result;
            returnValue.Result.PaymentDeadlines = CL2_AccountingPayment.Atomic.Retrieval.cls_Get_AllPaymentDeadlines_For_TenandID.Invoke(Connection, Transaction, securityTicket).Result;

            var account = new CL1_USR.ORM_USR_Account();
            account.Load(Connection, Transaction, securityTicket.AccountID);

            var incrNumberParam = new P_L2NR_GINfUA_1113()
            {
                GlobalStaticMatchingID = EnumUtils.GetEnumDescription(ENumberRangeUsageAreaType.BillNumber)
            };
            var billNumber = cls_Get_IncreasingNumber_for_UsageArea.Invoke(Connection, Transaction, incrNumberParam, securityTicket).Result.Current_IncreasingNumber;

            returnValue.Result.BillNumber = billNumber;
            return(returnValue);

            #endregion UserCode
        }