adding some views

This commit is contained in:
2026-03-22 16:28:01 +01:00
parent 498d46c10f
commit 7594d179a8
16 changed files with 327 additions and 92 deletions
@@ -5,9 +5,9 @@ namespace CityInfo.WEB.Services
public interface IPointOfInterestDataService
{
public Task<IEnumerable<PointOfInterest>> GetPointsOfInterest(int cityId);
public Task<PointOfInterest> GetPointOfInterest(int cityId, int pointOfInterestId);
public Task<PointOfInterest> CreatePointOfInterest(int cityId, PointOfInterest pointOfInterest);
public Task UpdatePointOfInterest(int cityId, PointOfInterest pointOfInterest);
public Task DeletePointOfInterest(int cityId, int pointOfInterestId);
public Task<PointOfInterest?> GetPointOfInterest(int cityId, int pointOfInterestId);
public Task<PointOfInterest?> CreatePointOfInterest(int cityId, PointOfInterest pointOfInterest);
public Task<bool> UpdatePointOfInterest(int cityId, PointOfInterest pointOfInterest);
public Task<bool> DeletePointOfInterest(int cityId, int pointOfInterestId);
}
}