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

            FR_L6TR_MRDfTR2_2310 functionReturn = new FR_L6TR_MRDfTR2_2310();

            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_MakeReportData_forTreatmentsReport2", ex);
            }
            return(functionReturn);
        }
Exemple #2
0
        protected static FR_L6TR_MRDfTR2_2310 Execute(DbConnection Connection, DbTransaction Transaction, P_L6TR_MRDfTR2_2310 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            #region UserCode
            var returnValue = new FR_L6TR_MRDfTR2_2310();
            returnValue.Result = new L6TR_MRDfTR2_2310();
            P_L6TR_GTI_fTR_1816 param = new P_L6TR_GTI_fTR_1816()
            {
                LanguageID   = Parameter.LanguageID,
                fromDate     = Parameter.fromDate,
                toDate       = Parameter.toDate,
                statusFilter = Parameter.statusFilter
            };
            var    data = cls_Get_TreatmentsInfo_for_TimeRange.Invoke(Connection, Transaction, param, securityTicket).Result;
            string file = ReportUtils.generateReport2SheetXLS(data);
            returnValue.Result.stream = new MemoryStream(File.ReadAllBytes(file));
            return(returnValue);

            #endregion UserCode
        }