15 lines
323 B
C#
15 lines
323 B
C#
using Hutopy.Domain.Entities;
|
|
|
|
namespace Hutopy.Application.Common.Interfaces;
|
|
|
|
public interface IApplicationDbContext
|
|
{
|
|
DbSet<TodoList> TodoLists { get; }
|
|
|
|
DbSet<TodoItem> TodoItems { get; }
|
|
|
|
DbSet<FuturCreator> FuturCreators { get; }
|
|
|
|
Task<int> SaveChangesAsync(CancellationToken cancellationToken);
|
|
}
|