예제 #1
0
 public void DelitingCall(Call call)
 {
     this.CallHistory.Remove(call);
 }
예제 #2
0
 public void AddingCall(Call call)
 {
     this.CallHistory.Add(call);
 }
예제 #3
0
 public void DeleteCalls(Call call)
 {
     this.CallHistory.Remove(call);
 }
예제 #4
0
 public void ClearHistory(Call call)
 {
     this.CallHistory.Clear();
 }
예제 #5
0
 public void AddCalls(Call call)
 {
     this.CallHistory.Add(call);
 }