Beispiel #1
0
 public void ThreeArgs(int i, float f, double d)
 {
     CallHistory.Add(EMethod.ThreeArgs);
     ArgsHistory.Add(new object[] { i, f, d });
 }
 public void AddCall(Call currentCall)
 {
     CallHistory.Add(currentCall);
 }
Beispiel #3
0
 public void SingleArg(int i)
 {
     CallHistory.Add(EMethod.SingleArg);
     ArgsHistory.Add(new object[] { i });
 }
Beispiel #4
0
 public void MakeCall(ulong phoneNumber, ulong duration)
 {
     CallHistory.Add(new Call(DateTime.Now, phoneNumber, duration));
 }
Beispiel #5
0
 public List <Call> AddCall(Call call)
 {
     CallHistory.Add(call);
     return(CallHistory);
 }
Beispiel #6
0
 public void AddCall(Call newCall)
 {
     CallHistory.Add(newCall);
 }
Beispiel #7
0
 public void AddCall(Call call)
 {
     CallHistory.Add(call);
 }