Esempio n. 1
0
 public void UpdateTopic(Topic topic)
 {
     Iticket.UpdateTopic(topic);
 }
Esempio n. 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();
 }
Esempio n. 3
0
 public void DelTopic(Topic topic)
 {
     Iticket.DelTopic(topic);
 }
Esempio n. 4
0
 public Volunteer()
 {
     this.Matches = new List <Match>();
     this.VolunteerPreferences = new Topic();
 }