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); }
public void SetSerie(ComicstripSerie serie) { this.Serie = serie; }