using Microsoft.EntityFrameworkCore; using OFBButte.Entities; using System; using System.Collections.Generic; using System.Text; namespace OFBButte.Application.Database { public interface IOFBContext { DbSet Users { get; set; } DbSet Profiles { get; set; } DbSet EmailVerificationCodes { get; set; } DbSet PasswordResetCodes { get; set; } DbSet MissionarySupportForms { get; set; } int SaveChanges(); } }