2023-02-08 14:33:22 +01:00
|
|
|
|
using Domain.Entities;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
namespace Application.Interfaces;
|
|
|
|
|
|
|
|
|
|
public interface ICardDbContext
|
|
|
|
|
{
|
|
|
|
|
public DbSet<CardBdatum> CardBdata { get; set; }
|
|
|
|
|
|
|
|
|
|
public DbSet<CardDetail> CardDetails { get; set; }
|
|
|
|
|
|
|
|
|
|
public DbSet<CardMain> CardMains { get; set; }
|
|
|
|
|
|
|
|
|
|
public DbSet<CardPlayCount> CardPlayCounts { get; set; }
|
|
|
|
|
|
2023-02-14 19:14:19 +01:00
|
|
|
|
public DbSet<PlayNumRank> PlayNumRanks { get; set; }
|
|
|
|
|
|
2023-02-08 14:33:22 +01:00
|
|
|
|
public Task<int> SaveChangesAsync(CancellationToken cancellationToken);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|