Exemplo n.º 1
0
 /// <summary>
 /// Gets a <c>Shop</c>-Object at a specified Index out of the <c>Shops</c>-Collection.
 /// </summary>
 /// <param name="index">The Index of the <c>Shop</c>-Object in the <c>Shops</c>-Collection.</param>
 /// <returns>The <c>Shop</c>-Object at the specified Index in the <c>Shops</c>-Collection.</returns>
 public Shop GetShopByIndex(int index)
 {
     return(Shops.ElementAt(index));
 }