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

            FR_L3EV_GETFT_1059_Array functionReturn = new FR_L3EV_GETFT_1059_Array();

            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_EventTypes_For_Tenant", ex);
            }
            return(functionReturn);
        }
コード例 #2
0
        protected static FR_L3EV_GETFT_1059_Array Execute(DbConnection Connection, DbTransaction Transaction, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            var returnStatus = new FR_L3EV_GETFT_1059_Array();

            DbCommand command = Connection.CreateCommand();

            command.Connection  = Connection;
            command.Transaction = Transaction;
            var commandLocation = "CL3_Events.Atomic.Retrieval.SQL.cls_Get_EventTypes_For_Tenant.sql";

            command.CommandText = new System.IO.StreamReader(System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream(commandLocation)).ReadToEnd();
            CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "ticket", securityTicket);
            command.CommandTimeout = QueryTimeout;

            List <L3EV_GETFT_1059> results = new List <L3EV_GETFT_1059>();
            var loader = new CSV2Core_MySQL.Dictionaries.MultiTable.Loader.DictionaryLoader(Connection, Transaction);
            var reader = new CSV2Core_MySQL.Support.DBSQLReader(command.ExecuteReader());

            try
            {
                reader.SetOrdinals(new string[] { "CMN_STR_SCE_StructureCalendarEvent_TypeID", "CalendaEventName_DictID", "EventIcon_RefID", "PriorityOrdinal", "ColorCode_Foreground", "ColorCode_Background", "ColorCode_Alpha", "IsShowingNotification", "IsEventType_Imported", "IsWorkingDay", "IsHalfWorkingDay", "IsNonWorkingDay", "InternalEventTypeID" });
                while (reader.Read())
                {
                    L3EV_GETFT_1059 resultItem = new L3EV_GETFT_1059();
                    //0:Parameter CMN_STR_SCE_StructureCalendarEvent_TypeID of type Guid
                    resultItem.CMN_STR_SCE_StructureCalendarEvent_TypeID = reader.GetGuid(0);
                    //1:Parameter CalendaEventName of type Dict
                    resultItem.CalendaEventName             = reader.GetDictionary(1);
                    resultItem.CalendaEventName.SourceTable = "cmn_str_sce_structurecalendarevent_types";
                    loader.Append(resultItem.CalendaEventName);
                    //2:Parameter EventIcon_RefID of type Guid
                    resultItem.EventIcon_RefID = reader.GetGuid(2);
                    //3:Parameter PriorityOrdinal of type int
                    resultItem.PriorityOrdinal = reader.GetInteger(3);
                    //4:Parameter ColorCode_Foreground of type String
                    resultItem.ColorCode_Foreground = reader.GetString(4);
                    //5:Parameter ColorCode_Background of type String
                    resultItem.ColorCode_Background = reader.GetString(5);
                    //6:Parameter ColorCode_Alpha of type double
                    resultItem.ColorCode_Alpha = reader.GetDouble(6);
                    //7:Parameter IsShowingNotification of type bool
                    resultItem.IsShowingNotification = reader.GetBoolean(7);
                    //8:Parameter IsEventType_Imported of type bool
                    resultItem.IsEventType_Imported = reader.GetBoolean(8);
                    //9:Parameter IsWorkingDay of type bool
                    resultItem.IsWorkingDay = reader.GetBoolean(9);
                    //10:Parameter IsHalfWorkingDay of type bool
                    resultItem.IsHalfWorkingDay = reader.GetBoolean(10);
                    //11:Parameter IsNonWorkingDay of type bool
                    resultItem.IsNonWorkingDay = reader.GetBoolean(11);
                    //12:Parameter InternalEventTypeID of type String
                    resultItem.InternalEventTypeID = reader.GetString(12);

                    results.Add(resultItem);
                }
            }
            catch (Exception ex)
            {
                reader.Close();
                throw new Exception("Exception occured durng data retrieval in method cls_Get_EventTypes_For_Tenant", ex);
            }
            reader.Close();
            //Load all the dictionaries from the datatables
            loader.Load();

            returnStatus.Result = results.ToArray();
            return(returnStatus);
        }