Skip to content

Commit a1e730b

Browse files
authored
fix(IResourceService): should inherit from shorthand interfaces
1 parent 2a11245 commit a1e730b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/JsonApiDotNetCore/Services/Contract/IResourceService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace JsonApiDotNetCore.Services
44
{
55
public interface IResourceService<T>
6-
: IResourceService<T, int>
6+
: IResourceCmdService<T>, IResourceQueryService<T>, IResourceService<T, int>
77
where T : class, IIdentifiable<int>
88
{ }
99

0 commit comments

Comments
 (0)