namespace Bookstore.Domain.Addresses { public interface IAddressRepository { protected internal Task
GetAsync(string sub, int id); protected internal Task> ListAsync(string sub); protected internal Task AddAsync(Address address); protected internal Task DeleteAsync(string sub, int id); protected internal Task SaveChangesAsync(); } }