public ListEntryInfoCollection GetListEntryInfoCollection(string ListName, string ParentKey, int PortalId)
 {
     ListEntryInfoCollection objListEntryInfoCollection = new ListEntryInfoCollection();
     ArrayList arrListEntries = CBO.FillCollection(DataProvider.Instance().GetListEntriesByListName(ListName, ParentKey, PortalId), typeof(ListEntryInfo));
     foreach (ListEntryInfo entry in arrListEntries)
     {
         objListEntryInfoCollection.Add(entry.Key, entry);
     }
     return objListEntryInfoCollection;
 }