Example #1
0
File: ENNew.cs Project: rlm33/svn
 public ENNew(String idBook, ENSubject subject, ENCourse course,
              String cif, ENYear years, String name, int quantity, String description) :
     base(idBook, subject, course,
          cif, years, name, quantity, description)
 {
     cadNew = new CADNew();
 }
Example #2
0
 public ENNew(String idBook, ENSubject subject, ENCourse course, 
             String cif, ENYear years, String name, int quantity, String description)
     : base(idBook,  subject,  course, 
            cif,  years,  name,  quantity,  description)
 {
     cadNew = new CADNew();
 }
Example #3
0
 public ENYearHasBooks(ENBook book, ENYear year)
 {
     this.book = book;
     this.year = year;
 }
Example #4
0
 public ENYearHasBooks()
 {
     cadYearHasBook = new CADYearsHasBooks();
     year           = new ENYear();
     book           = new ENBook();
 }
Example #5
0
 public ENYearHasBooks(ENBook book, ENYear year)
 {
     this.book = book;
     this.year = year;
 }
Example #6
0
 public ENYearHasBooks()
 {
     cadYearHasBook = new CADYearsHasBooks();
     year = new ENYear();
     book = new ENBook();
 }