public void DeleteCall(Call call)
 {
     this.callHistory.Remove(call);
 }
 // Task: 10
 public void AddCall(Call call)
 {
     this.callHistory.Add(call);
 }