public GlobalSolutionItem(GlobalSolution.eImportItemType ItemType, string ItemFullPath, string ItemExtraInfo, bool Selected, string ItemName, string RequiredFor)
 {
     this.ItemType      = ItemType;
     this.ItemFullPath  = ItemFullPath;
     this.ItemExtraInfo = ItemExtraInfo;
     this.Selected      = Selected;
     this.ItemName      = ItemName;
     this.RequiredFor   = RequiredFor;
 }
Beispiel #2
0
        ObservableList <GlobalSolutionItem> FilterItemsListToImport(GlobalSolution.eImportItemType importItemType)
        {
            ObservableList <GlobalSolutionItem> ItemsListToImport = GingerCore.General.ConvertListToObservableList(wiz.ItemsListToImport.Where(x => x.ItemType == importItemType).ToList());

            return(ItemsListToImport);
        }