Ejemplo n.º 1
0
 public void ArtistUppträdande(Artist artist)
 {
     ArtistFöreställningarDictionary[artist]++;
 }
Ejemplo n.º 2
0
 public void Employ(Artist artist)
 {
     artistDictonary.Add(artist, 0);
 }
Ejemplo n.º 3
0
 public void Anställ(Artist artist)
 {
     ArtistFöreställningarDictionary.Add(artist, 0);
 }
Ejemplo n.º 4
0
 public void ArtistPerformance(Artist artist)
 {
     artistDictonary[artist] += 1;
 }