コード例 #1
0
ファイル: BookCard.cs プロジェクト: vtsvang/cis-23
 public BookCard(string Title, List<string> Authors, LCCN CatalogNumber, List<string> SubjectHeadings, string Publisher, int YearOfPublication, bool InCirulation)
 {
     this.Title = Title;
     this.Authors = Authors;
     this.CatalogNumber = CatalogNumber;
     this.SubjectHeadings = SubjectHeadings;
     this.Publisher = Publisher;
     this.YearOfPublication = YearOfPublication;
     this.InCirulation = InCirulation;
 }
コード例 #2
0
 public BookCard(string Title, List <string> Authors, LCCN CatalogNumber, List <string> SubjectHeadings, string Publisher, int YearOfPublication, bool InCirulation)
 {
     this.Title             = Title;
     this.Authors           = Authors;
     this.CatalogNumber     = CatalogNumber;
     this.SubjectHeadings   = SubjectHeadings;
     this.Publisher         = Publisher;
     this.YearOfPublication = YearOfPublication;
     this.InCirulation      = InCirulation;
 }