Example #1
0
 public override void RemoveClub(TourClub t)
 {
     tourclubs.Remove(t);
     Notify?.Invoke($"You has been removed from " + t.Name);
 }
Example #2
0
 public override void NotifyAdding(TourClub t)
 {
     tourclubs.Add(t);
     Notify?.Invoke($"You added to " + t.Name);
 }
Example #3
0
 public void LeaveClub(TourClub t)
 {
     Notify?.Invoke($"Leaving from " + t.Name + " ...");
     t.RemoveCustomer(this);
 }
Example #4
0
 public void AddMyselfClub(TourClub t)
 {
     t.AddCustomer(this);
 }
Example #5
0
 public abstract void RemoveClub(TourClub t);
Example #6
0
 public abstract void NotifyAdding(TourClub t);