Adding a Blazor WASM app
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user