示例#1
0
 public void AddCall(Call calls)
 {
     this.callHistory.Add(calls);
 }
示例#2
0
        public List<Call> AddCall(Call call)
        {
            callHistory.Add(new Call(call.Date, call.Time, call.DilledPhoneNumber, call.DurationOfCall));

            return callHistory;
        }
示例#3
0
 /// <summary>
 /// Add calls to call history
 /// </summary>
 /// <param name="call">Call to be added</param>
 public void AddCall(Call call)
 {
     callHistory.Add(call);
 }