public NatGeoImageProvider(NatGeoImageCollection natGeoImageCollection)
 {
     _natGeoImageCollection = natGeoImageCollection;
 }
Example #2
0
 public NatGeoDataGroup(string uniqueId, string title, string imagePath, string description)
     : base(uniqueId, title, imagePath, description)
 {
     Items = new List<NatGeoImage>();
     ItemCollection = new NatGeoImageCollection();
 }