Exemplo n.º 1
0
        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}");
        }