public List <SimpleDto> DoSomething(SimpleDto dto, string message) { invokeCounter.AddInvokation(nameof(DoSomething), new object[] { dto, message }); return(new List <SimpleDto>(new [] { new SimpleDto { Index = 34, Name = "sdf" } })); }
public void GetSomeDto(SimpleDto dto) { invokeCounter.AddInvokation(nameof(GetSomeDto), new[] { dto }); }
public void DoSomething() { invokeCounter.AddInvokation(nameof(DoSomething)); }