Esempio n. 1
0
 public Artist(string fc, string gender, int id, int totalWorks, string url, Event birth, Place activePlace)
 {
     this.fc = fc;
     this.gender = gender;
     this.id = id;
     this.totalWorks = totalWorks;
     this.url = url;
     this.birth = birth;
     this.activePlace = activePlace;
 }
Esempio n. 2
0
 public Event(int year, Place placeEvent)
 {
     this.year = year;
     this.placeEvent = placeEvent;
 }