Ejemplo n.º 1
0
 public DiscJockey(SongsOfThe70s newsongsOfThe70S,
                   SongsOfThe80s newsongsOfThe80S,
                   SongsOfThe90s newsongsOfThe90S)
 {
     songsOfThe70S = newsongsOfThe70S;
     songsOfThe80S = newsongsOfThe80S;
     songsOfThe90S = newsongsOfThe90S;
 }
Ejemplo n.º 2
0
        public static void Main()
        {
            var songs70s = new SongsOfThe70s();
            var songs80s = new SongsOfThe80s();
            var songs90s = new SongsOfThe90s();

            var madMike = new DiscJockey(songs70s, songs80s, songs90s);

            madMike.ShowTheSongs();
        }