8 lines
186 B
C#
8 lines
186 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Solicitors.Data.RepositorySetup;
|
|
|
|
internal interface IRepoSetupService
|
|
{
|
|
void OnConfiguring(DbContextOptionsBuilder optionsBuilder);
|
|
} |