using CartWise.Domain.Entities; using Microsoft.EntityFrameworkCore; namespace CartWise.Application.Interfaces; public interface IApplicationDbContext { DbSet Households { get; } DbSet HouseholdMembers { get; } DbSet ShoppingLists { get; } DbSet ShoppingListItems { get; } Task SaveChangesAsync(CancellationToken cancellationToken = default); }