示例#1
0
 public ComicStrip(string titel, ComicstripSerie serie, int number, List <Author> authors, Publisher publisher)
 {
     this.SetTitel(titel);
     this.SetSerie(serie);
     this.SetNumber(number);
     this.SetAuthors(authors);
     this.SetPublisher(publisher);
 }
示例#2
0
 public void SetSerie(ComicstripSerie serie)
 {
     this.Serie = serie;
 }