34 lines
703 B
C#
Raw Normal View History

2024-12-08 22:57:55 +04:00
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<List<City>> GetAllAsync()
{
throw new NotImplementedException();
}
public Task<City> GetByIdAsync(Guid id)
{
throw new NotImplementedException();
}
public Task UpdateAsync(City city)
{
throw new NotImplementedException();
}
}
}