Ejemplo n.º 1
0
        public async Task <IActionResult> CreateTimer([FromBody] NewTimerModel newNewTimer)
        {
            await timerService.CreateTimerAsync(HttpContext.User.Identity.Name, newNewTimer).ConfigureAwait(false);

            return(Created("/Timers/AllTimers", null));
        }