private void AddUutDocumentReference(UUTDescription uut)
{
var docRef = new DocumentReference();
var document = DocumentManager.GetDocument(uut.uuid);
docRef.ID = "UUT" + uutListControl.Items.Count+1;
docRef.uuid = uut.uuid;
docRef.DocumentType = document.DocumentType;
docRef.DocumentContent = document.DocumentContent;
docRef.ContentType = document.ContentType;
docRef.DocumentName = document.name;
var idr = new ItemDescriptionReference {Item = docRef};
uutListControl.AddListViewObject( idr );
}