17 lines
482 B
C#
17 lines
482 B
C#
|
using Microsoft.EntityFrameworkCore;
|
|||
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Diagnostics.Metrics;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Persistence.Database.Model;
|
|||
|
public interface IPersistenceDbContext : IDisposable
|
|||
|
{
|
|||
|
DbSet<DataSaub> DataSaub { get; }
|
|||
|
DatabaseFacade Database { get; }
|
|||
|
Task<int> SaveChangesAsync(CancellationToken cancellationToken);
|
|||
|
}
|