You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System.Threading.Tasks;
- using Campaign_Tracker.Server.Models;
- using Microsoft.EntityFrameworkCore;
-
- namespace Campaign_Tracker.Server.Services;
-
- public interface IMunicipalityAddressService
- {
- Task<IEnumerable<MunicipalityAddress>> GetAddressesAsync(int municipalityId);
- Task<MunicipalityAddress> GetAddressAsync(int id);
- Task<MunicipalityAddress> CreateAddressAsync(MunicipalityAddress address);
- Task<MunicipalityAddress> UpdateAddressAsync(int id, MunicipalityAddress address);
- Task<bool> DeleteAddressAsync(int id);
- }
|