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 1bd8d05 commit ca33488Copy full SHA for ca33488
src/JsonApiDotNetCore/Services/Contract/IResourceCmdService.cs
@@ -2,7 +2,12 @@
2
3
namespace JsonApiDotNetCore.Services
4
{
5
- public interface IResourceCmdService<T> : IResourceCmdService<T, int>
+ public interface IResourceCmdService<T> :
6
+ ICreateService<T>,
7
+ IUpdateService<T>,
8
+ IUpdateRelationshipService<T>,
9
+ IDeleteService<T>,
10
+ IResourceCmdService<T, int>
11
where T : class, IIdentifiable<int>
12
{ }
13
0 commit comments