Beispiel #1
0
 public Movie AddTheatre(Theatre Theatre) // Добавить кинотеатр в список
 {
     this.Theatres.Add(Theatre);
     return(this); // Для чейнинга
 }
Beispiel #2
0
 public City AddTheatre(Theatre Theatre)  // Добавить кинотеатр в город
 {
     this.Theatres.Add(Theatre);
     return(this); // Для чейнинга
 }