public GenericCommandResult Create([FromBody] CreateScoreCommand command, [FromServices] ScoreHandler handler)
 {
     return((GenericCommandResult)handler.Handle(command));
 }