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

            try
            {
                var registeredSerie = await service.AddAsync(userId, targetId, serie);

                return(CreatedAtRoute(nameof(GetSerieByIdAsync), new { userId, targetId, id = registeredSerie.Id }, registeredSerie));
            }
            catch (Application.Exceptions.ApplicationException ex)
            {
                return(BadRequest(ex.ToResult()));
            }
            catch (ArgumentException ex)
            {
                return(BadRequest(new { reason = ex.Message }));
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex);
                return(Problem("Something is not right, calm down calm down! We're working to fix...(I hope so!"));
            }
        }