using CityInfo.WEB.Models; namespace CityInfo.WEB.Services { public interface IPointOfInterestDataService { public Task> GetPointsOfInterest(int cityId); public Task GetPointOfInterest(int cityId, int pointOfInterestId); public Task CreatePointOfInterest(int cityId, PointOfInterest pointOfInterest); public Task UpdatePointOfInterest(int cityId, PointOfInterest pointOfInterest); public Task DeletePointOfInterest(int cityId, int pointOfInterestId); } }