Beispiel #1
0
 public void UpdateTopic(Topic topic)
 {
     Iticket.UpdateTopic(topic);
 }
Beispiel #2
0
 public Volunteer(string username, string name = null, Location location = null, string email = null)
     : base(username, name, location, email)
 {
     this.Matches = new List <Match>();
     this.VolunteerPreferences = new Topic();
 }
Beispiel #3
0
 public void DelTopic(Topic topic)
 {
     Iticket.DelTopic(topic);
 }
Beispiel #4
0
 public Volunteer()
 {
     this.Matches = new List <Match>();
     this.VolunteerPreferences = new Topic();
 }