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; }
public Event(int year, Place placeEvent) { this.year = year; this.placeEvent = placeEvent; }