public void AddTags([FromQuery] string placeId, [FromBody] List <string> tagsIds)
 {
     if (tagsIds.Count() <= PlaceTagsLimit)
     {
         _placeService.AddTagsToPlace(placeId, tagsIds);
     }
     else
     {
         throw new InvalidDataException("Can't add more than 10 tags");
     }
 }