ATML1671Allocator.forms.RequiredInstrumentsWindow.AddInstrument C# (CSharp) Method

AddInstrument() private method

private AddInstrument ( DocumentReference documentReference ) : void
documentReference DocumentReference
return void
        private void AddInstrument(DocumentReference documentReference)
        {
            var itm = new ListViewItem(documentReference.ID);
            itm.SubItems.Add(documentReference.uuid);
            itm.SubItems.Add(documentReference.DocumentType.ToString());
            lvInstruments.Items.Add(itm);
        }

Same methods

RequiredInstrumentsWindow::AddInstrument ( ItemDescription itemDescription ) : void