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); }
public void SingleArg(int i) { CallHistory.Add(EMethod.SingleArg); ArgsHistory.Add(new object[] { i }); }
public void MakeCall(ulong phoneNumber, ulong duration) { CallHistory.Add(new Call(DateTime.Now, phoneNumber, duration)); }
public List <Call> AddCall(Call call) { CallHistory.Add(call); return(CallHistory); }
public void AddCall(Call newCall) { CallHistory.Add(newCall); }
public void AddCall(Call call) { CallHistory.Add(call); }