/// <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; }
public BaggageMessageParsing(TTYCollection ttyCollection) { BagTMLog.LogDebug("BagTM Queue Message Parsing Constructor", this); this.ttyCollection = ttyCollection; BagTMLog.LogDebug("BagTM Queue Message Parsing Constructor Ending", this); }
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); }