Skip to content

Commit 32bef04

Browse files
authored
fix(IResourceQueryService): inherit shorthand interfaces
1 parent 0c474fa commit 32bef04

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/JsonApiDotNetCore/Services/Contract/IResourceQueryService.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@
22

33
namespace JsonApiDotNetCore.Services
44
{
5-
public interface IResourceQueryService<T> : IResourceQueryService<T, int>
5+
public interface IResourceQueryService<T> :
6+
IGetAllService<T>,
7+
IGetByIdService<T>,
8+
IGetRelationshipsService<T>,
9+
IGetRelationshipService<T>,
10+
IResourceQueryService<T, int>
611
where T : class, IIdentifiable<int>
712
{ }
813

0 commit comments

Comments
 (0)