public void AddClub(Club unClub) { Clubs.Add(unClub); }
/// <summary> /// Constructor for an event that exists in the DataBase /// </summary> public Event(int Id, string Name, DateTime Start, DateTime End, Club Club) : this(Name, Start, End, Club) { this.Id = Id; }