ofbapi/OFBButte.Application/Database/IOFBContext.cs

19 lines
545 B
C#

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