using Domain.Entities; using Domain.Repository; namespace Services { public class CityService : ICityRepository { public Task AddAsync(City city) { throw new NotImplementedException(); } public Task DeleteAsync(City city) { throw new NotImplementedException(); } public Task> GetAllAsync() { throw new NotImplementedException(); } public Task GetByIdAsync(Guid id) { throw new NotImplementedException(); } public Task UpdateAsync(City city) { throw new NotImplementedException(); } } }