IAppDbContext.cs 289 B

123456789101112
  1. using Microsoft.EntityFrameworkCore;
  2. using Domain.Entities.Common;
  3. namespace Application.Abstractions.Data
  4. {
  5. public interface IAppDbContext
  6. {
  7. DbSet<Config> Config { get; set; }
  8. Task<int> SaveChangesAsync(CancellationToken cancellationToken = default);
  9. }
  10. }