static async Task CallServices() { TimerService timerService = new TimerService(); Result <string> result = await timerService.CreateNewTimerSeconds(300).ConfigureAwait(false); Console.WriteLine($"Created timer with id:{result.value}"); }