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 0c474fa commit 32bef04Copy full SHA for 32bef04
src/JsonApiDotNetCore/Services/Contract/IResourceQueryService.cs
@@ -2,7 +2,12 @@
2
3
namespace JsonApiDotNetCore.Services
4
{
5
- public interface IResourceQueryService<T> : IResourceQueryService<T, int>
+ public interface IResourceQueryService<T> :
6
+ IGetAllService<T>,
7
+ IGetByIdService<T>,
8
+ IGetRelationshipsService<T>,
9
+ IGetRelationshipService<T>,
10
+ IResourceQueryService<T, int>
11
where T : class, IIdentifiable<int>
12
{ }
13
0 commit comments