Ejemplo n.º 1
0
        public async Task <ActionResult> decrementUserCount(string filedName, [FromBody] int value)
        {
            await _statisticsRepository.addValueAsync(filedName, value);

            return(Ok());
        }