Пример #1
0
 public static Movie Play(IPlayer myPlayer, string companyName, string movieName)
 {
     PlayerFactory myFactory = new PlayerFactory();
     myPlayer = myFactory.CreatePlayer(companyName);
     Movie myMovie = new Movie(movieName);
     myMovie.WatchedOn = myPlayer.PlayMovie(myMovie.Name);
     myMovie.HasBeenPlayed = true;
     return myMovie;
 }