Skip to content

Commit 984d530

Browse files
Biarityjaredcnance
authored andcommitted
Fix broken url for IResourceService
1 parent b06ce62 commit 984d530

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/ResourceServices.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ currentMenu: services
44

55
# Resource Services
66

7-
The [IResourceService](https://github.com/Research-Institute/json-api-dotnet-core/blob/master/src/JsonApiDotNetCore/Services/IResourceService.cs) acts as a service layer between the controller and the data access
7+
The [IResourceService](https://github.com/json-api-dotnet/JsonApiDotNetCore/blob/master/src/JsonApiDotNetCore/Services/Contract/IResourceService.cs) acts as a service layer between the controller and the data access
88
layer. This allows you to customize it however you want and not be dependent upon Entity
99
Framework. This is also a good place to implement custom business logic.
1010

@@ -123,4 +123,4 @@ public class MyResourcesController : BaseJsonApiController<MyResource> {
123123
public override async Task<IActionResult>DeleteAsync(int id)
124124
=> await base.DeleteAsync(id);
125125
}
126-
```
126+
```

0 commit comments

Comments
 (0)