Adding a Blazor WASM app

This commit is contained in:
2026-03-22 01:10:14 +01:00
parent ce04cd8d77
commit c86c989cb5
81 changed files with 87512 additions and 2 deletions
@@ -0,0 +1,13 @@
using CityInfo.WEB.Models;
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);
}
}