public VmContainer _AddContainer( String identifier, String note, String breakDownLocationCode) { int nestId = _CreateNest(VmNestType.CONTAINER); VmContainer nest = new VmContainer(); nest.Id = nestId; nest.Identifier = identifier; nest.Note = note; nest.BreakDownLocationCode = breakDownLocationCode; VmAirportData.Default.AirportOutputData.ContainerFile.Append(nest); _AddNest(nest); return nest; }
//# __________ PROTOCOL :: PRIVATE __________ #// public void UpdateContainer() { VmContainer c = Engine.Container; if( c == null) { c = new VmContainer(); Engine.Container = c; } String identifier = NormalizeIdentifier(); c.Identifier = identifier; c.Note = _noteTB.Text; }
public VmContainer ReplaceContainer( VmContainer container) { VmAirportData.Default.AirportOutputData.ContainerFile.Replace(container); return (VmContainer)_ReplaceNest(container); }
public void ClearEngine() { Container = new VmContainer(); UldInfoEngine.NestIdentifier = ""; UldInfoEngine.NestNote = ""; }