public Task <IEnumerable <SimpleUnitViewModel> > Attack([FromBody] AttackDTO attack) { int userId = int.Parse(User.FindFirstValue(ClaimTypes.NameIdentifier)); return(armyService.AttackAsync(userId, attack)); }