I am trying to read some code. It has these interfaces but inside of them there are only 'empty' looking Tasks. These are being called in other .cs files but I can't see any logic happening.
Example:
public interface IProductSubmitter
{
Task SubmitAsync();
}
When I F12 on the method it doesn't go anywhere. This is the 'end' of the road.
In another method it's used like so:
private IProductSubmitter Submitter {get;}
public async Task SubmitProductAsync(Product product)
{
await this.Submitter.SubmitAsync();
...
}
Any pointers in the right direction would be great. I already went over C# interfaces but those seem to contain logic inside the Tasks.