public async Task <bool> UpdateSeenStatus(SeriesSeenStatusModel model)
        {
            var settings = new HttpSettings($"{this.Url}/map/status", null, null, "My Series seen status updating");

            var body = new HttpBody <SeriesSeenStatusModel>(model);

            return(await this.Http.Update <SeriesSeenStatusModel>(settings, body));
        }
 public IActionResult UpdateSeenStatus([FromBody] SeriesSeenStatusModel model)
 {
     this._seriesService.UpdateSeenStatus(model.Id, model.Seen);
     return(this.Ok());
 }