public List<Call> RemoveCalls(Call call) { this.CallHistory.Remove(call); return this.CallHistory; }
public List<Call> AddCalls(Call call) { this.CallHistory.Add(call); return this.CallHistory; }