public async Task <ICollection <PointOfInterestEntity> > GetByPersonIdAsync(Guid personId)
 {
     return(await _repository.GetByPersonId(personId).ConfigureAwait(false));
 }