@@ -72,7 +72,7 @@ public class PersonBatchDataLoader : BatchDataLoader<string, Person>
72
72
public PersonBatchDataLoader (
73
73
IPersonRepository repository ,
74
74
IBatchScheduler batchScheduler ,
75
- DataLoaderOptions < string > ? options = null )
75
+ DataLoaderOptions ? options = null )
76
76
: base (batchScheduler , options )
77
77
{
78
78
_repository = repository ;
@@ -144,7 +144,7 @@ public class PersonBatchDataLoader : BatchDataLoader<string, Person>
144
144
public PersonBatchDataLoader (
145
145
IPersonRepository repository ,
146
146
IBatchScheduler batchScheduler ,
147
- DataLoaderOptions < string > ? options = null )
147
+ DataLoaderOptions ? options = null )
148
148
: base (batchScheduler , options )
149
149
{
150
150
_repository = repository ;
@@ -209,7 +209,7 @@ public class PersonsByLastNameDataloader
209
209
public PersonsByLastNameDataloader (
210
210
IPersonRepository repository ,
211
211
IBatchScheduler batchScheduler ,
212
- DataLoaderOptions < string > ? options = null )
212
+ DataLoaderOptions ? options = null )
213
213
: base (batchScheduler , options )
214
214
{
215
215
_repository = repository ;
0 commit comments