/// <summary>
 /// Constructor for the Baggage TTY parser with TTY parsing logic
 /// </summary>
 public TTYMessageFormatter(TTYCollection ttyCollection, BaggageEntities db, String hub)
 {
     this.ttyCollection = ttyCollection;
     this.parserBag     = new BaggageMessageParsing(ttyCollection);
     this.parserPTM     = new PTMMessageParsing(ttyCollection, hub);
     this.db            = db;
 }
Пример #2
0
        public BaggageMessageParsing(TTYCollection ttyCollection)
        {
            BagTMLog.LogDebug("BagTM Queue Message Parsing Constructor", this);

            this.ttyCollection = ttyCollection;

            BagTMLog.LogDebug("BagTM Queue Message Parsing Constructor Ending", this);
        }
Пример #3
0
        public PTMMessageParsing(TTYCollection ttyCollection, String hub)
        {
            BagTMLog.LogDebug("BagTM Queue Message Parsing Constructor", this);

            this.ttyCollection = ttyCollection;
            this.hub = hub;
            BagTMLog.LogDebug("BagTM Queue Message Parsing Constructor Ending", this);

        }