Exemplo n.º 1
0
        protected static FR_L2_GCFY_1310 Execute(DbConnection Connection, DbTransaction Transaction, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            #region UserCode
            var returnValue = new FR_L2_GCFY_1310();

            DateTime currentDate = DateTime.Now.Date;

            var fyParam = new CL2_FiscalYear.Atomic.Retrieval.P_L2_GFYfD_1307
            {
                ComparingDate = currentDate
            };

            var result = CL2_FiscalYear.Atomic.Retrieval.cls_Get_FiscalYear_for_Date.Invoke(Connection, Transaction, fyParam, securityTicket).Result;

            returnValue.Result = new L2_GCFY_1310
            {
                ACC_FiscalYearID = result.ACC_FiscalYearID,
                FiscalYearName   = result.FiscalYearName,
                StartDate        = result.StartDate,
                EndDate          = result.EndDate
            };

            return(returnValue);

            #endregion UserCode
        }
Exemplo n.º 2
0
        ///<summary>
        /// Method Invocation of wrapper classes
        ///<summary>
        protected static FR_L2_GCFY_1310 Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            bool cleanupConnection  = Connection == null;
            bool cleanupTransaction = Transaction == null;

            FR_L2_GCFY_1310 functionReturn = new FR_L2_GCFY_1310();

            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_Current_FiscalYear", ex);
            }
            return(functionReturn);
        }