Skip to content

Commit 0c474fa

Browse files
authored
fix(IResourceCmdService): inherit shorthand interfaces
1 parent a1e730b commit 0c474fa

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/JsonApiDotNetCore/Services/Contract/IResourceCmdService.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 IResourceCmdService<T> : IResourceCmdService<T, int>
5+
public interface IResourceCmdService<T> :
6+
ICreateService<T>,
7+
IUpdateService<T>,
8+
IUpdateRelationshipService<T>,
9+
IDeleteService<T>,
10+
IResourceCmdService<T, int>
611
where T : class, IIdentifiable<int>
712
{ }
813

0 commit comments

Comments
 (0)