public static async Task Main(string[] args) { _potatoService = new PotatoService(); var potatoCount = await _potatoService.GetPotatoCount(); Console.WriteLine($"There are {potatoCount} potatoes today"); }
public UnitTest1() { _potatoService = new PotatoService(); }