Skip to content

Instantly share code, notes, and snippets.

@explorer14
Last active September 9, 2018 20:37
Show Gist options
  • Select an option

  • Save explorer14/fa42208f2a305d6b2021d05c1389bd4a to your computer and use it in GitHub Desktop.

Select an option

Save explorer14/fa42208f2a305d6b2021d05c1389bd4a to your computer and use it in GitHub Desktop.
public class BreadSizeService
: IBreadSizeService
{
public async Task<int> BreadSizeRequiredForPizzaSize(
int pizzaDiameterInCm)
{
Log.Logger.Information("Retrieving bread size for {size} cm pizza...",
pizzaDiameterInCm);
return await Task.FromResult(3);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment