public void Put(Guid id, [FromBody] UpdatePointOfInterest pof)
        {
            var entity = _repository.GetById(id);

            entity.Update(pof.Description, pof.Location, pof.Name);
            // magic
            _repository.Edit(entity);
        }