Exemplo n.º 1
0
        ///<summary>
        /// Method Invocation of wrapper classes
        ///<summary>
        protected static FR_L6LR_GRARD_1130 Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L6LR_GRARD_1130 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            bool cleanupConnection  = Connection == null;
            bool cleanupTransaction = Transaction == null;

            FR_L6LR_GRARD_1130 functionReturn = new FR_L6LR_GRARD_1130();

            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_RemainingAllowances_ReportData", ex);
            }
            return(functionReturn);
        }
Exemplo n.º 2
0
        protected static FR_L6LR_GRARD_1130 Execute(DbConnection Connection, DbTransaction Transaction, P_L6LR_GRARD_1130 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            #region UserCode
            var             returnValue = new FR_L6LR_GRARD_1130();
            L6LR_GRARD_1130 result      = new L6LR_GRARD_1130();
            result.Company = cls_Get_Company_Structure_For_Tenant.Invoke(Connection, Transaction, securityTicket).Result;
            L5EM_GEFT_0959[] allEmployees = cls_Get_Employees_For_Tenant.Invoke(Connection, Transaction, securityTicket).Result;


            result.Employees      = allEmployees;
            result.AbsenceReasons = cls_Get_AbsenceReasons_For_Tenant.Invoke(Connection, Transaction, securityTicket).Result;


            P_L5LR_GLRFSP_1532 param = new P_L5LR_GLRFSP_1532();
            param.EmployeeIDList = Parameter.ListOfEmployees;
            result.Leaves        = cls_Get_LeaveRequests_For_SelectedPersons.Invoke(Connection, Transaction, param, securityTicket).Result;

            result.EmployeesForTenant = allEmployees;
            returnValue.Result        = result;
            return(returnValue);

            #endregion UserCode
        }