public void Post([FromBody] CreatePointOfInterest pof)
        {
            var entity = PointOfInterest.Create(pof.Description, pof.Location, pof.Name);

            _repository.Add(entity);
        }