예제 #1
0
 public void Delete(Call call)
 {
     this.CallHistory.Remove(call);
 }
예제 #2
0
 public void AddCall(Call call)
 {
     this.callHistory.Add(call);
 }
예제 #3
0
 //Problem 10. Add/Remove/Clear
 public void Add(Call newCall)
 {
     this.CallHistory.Add(newCall);
 }
예제 #4
0
 public void RemoveCallFromHistory(Call call)
 {
     this.CallHistory.Remove(call);
 }
예제 #5
0
 public void AddCallToHistory(Call call)
 {
     this.CallHistory.Add(call);
 }
예제 #6
0
 public void RemoveCallFromHistory(Call call)
 {
     this.CallHistory.Remove(call);
 }
예제 #7
0
 public void AddCallToHistory(Call call)
 {
     this.CallHistory.Add(call);
 }
예제 #8
0
 public void AddCall(Call call)
 {
     this.callHistory.Add(call);
 }