mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
make Service abstract
This commit is contained in:
parent
0b7d263b4d
commit
8be5df79ab
1 changed files with 3 additions and 3 deletions
|
|
@ -5,14 +5,14 @@
|
|||
namespace FilterLists.Services
|
||||
{
|
||||
[UsedImplicitly]
|
||||
public class Service
|
||||
public abstract class Service
|
||||
{
|
||||
protected readonly FilterListsDbContext DbContext;
|
||||
protected readonly IConfigurationProvider MapConfig;
|
||||
|
||||
public Service(FilterListsDbContext dbContext) => DbContext = dbContext;
|
||||
protected Service(FilterListsDbContext dbContext) => DbContext = dbContext;
|
||||
|
||||
public Service(FilterListsDbContext dbContext, IConfigurationProvider mapConfig)
|
||||
protected Service(FilterListsDbContext dbContext, IConfigurationProvider mapConfig)
|
||||
{
|
||||
DbContext = dbContext;
|
||||
MapConfig = mapConfig;
|
||||
|
|
|
|||
Loading…
Reference in a new issue