Last active
September 9, 2018 20:37
-
-
Save explorer14/fa42208f2a305d6b2021d05c1389bd4a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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