We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c80eb7 commit 3fd2e7fCopy full SHA for 3fd2e7f
src/JsonApiDotNetCore/Controllers/JsonApiController.cs
@@ -17,6 +17,12 @@ public JsonApiController(
17
: base(jsonApiContext, resourceService, loggerFactory)
18
{ }
19
20
+ public JsonApiController(
21
+ IJsonApiContext jsonApiContext,
22
+ IResourceService<T, int> resourceService)
23
+ : base(jsonApiContext, resourceService)
24
+ { }
25
+
26
public JsonApiController(
27
IJsonApiContext jsonApiContext,
28
IGetAllService<T, int> getAll = null,
0 commit comments