示例#1
0
 public void DeleteCall(Call call)
 {
     this.CallHistory.Remove(call);
 }
示例#2
0
 //Add methods in the GSM class for adding and deleting calls from the calls history. Add a method to clear the call history.
 public void AddCall(Call call)
 {
     this.CallHistory.Add(call);
 }