10 lines
244 B
C#
10 lines
244 B
C#
using Hutopy.Domain.Entities;
|
|
|
|
namespace Hutopy.Application.Common.Interfaces;
|
|
|
|
public interface IApplicationDbContext
|
|
{
|
|
DbSet<FutureCreator> FutureCreators { get; }
|
|
Task<int> SaveChangesAsync(CancellationToken cancellationToken);
|
|
}
|