using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; namespace ZymonicServices; public interface IZymonicDbContext : IDisposable { DbSet Set() where TEntity : class; Task SaveChangesAsync(); public void StartupTasks(); public int SaveChanges(); DatabaseFacade Database { get; } }