public async Task <IActionResult> GetSerieByIdAsync([FromRoute] string userId, [FromRoute] string targetId, [FromRoute] string id, [FromServices] ISerieApplicationService service)
        {
            if (!string.Equals(User.Identity.Name, userId))
            {
                return(Forbid());
            }

            var registeredSerie = await service.GetByIdAsync(userId, targetId, id);

            if (registeredSerie == null)
            {
                return(NotFound());
            }

            return(Ok(registeredSerie));
        }