1
1
using System ;
2
- using JsonApiDotNetCore . Configuration ;
2
+ using JsonApiDotNetCore . Graph ;
3
3
using JsonApiDotNetCore . Internal ;
4
4
using JsonApiDotNetCore . Internal . Contracts ;
5
5
using JsonApiDotNetCore . Models ;
@@ -21,7 +21,7 @@ public interface IResourceGraphBuilder
21
21
/// <param name="pluralizedTypeName">
22
22
/// The pluralized name that should be exposed by the API.
23
23
/// If nothing is specified, the configured name formatter will be used.
24
- /// See <see cref="JsonApiOptions.ResourceNameFormatter " />.
24
+ /// See <see cref="IResourceNameFormatter " />.
25
25
/// </param>
26
26
IResourceGraphBuilder AddResource < TResource > ( string pluralizedTypeName = null ) where TResource : class , IIdentifiable < int > ;
27
27
@@ -34,7 +34,7 @@ public interface IResourceGraphBuilder
34
34
/// <param name="pluralizedTypeName">
35
35
/// The pluralized name that should be exposed by the API.
36
36
/// If nothing is specified, the configured name formatter will be used.
37
- /// See <see cref="JsonApiOptions.ResourceNameFormatter " />.
37
+ /// See <see cref="IResourceNameFormatter " />.
38
38
/// </param>
39
39
IResourceGraphBuilder AddResource < TResource , TId > ( string pluralizedTypeName = null ) where TResource : class , IIdentifiable < TId > ;
40
40
@@ -46,7 +46,7 @@ public interface IResourceGraphBuilder
46
46
/// <param name="pluralizedTypeName">
47
47
/// The pluralized name that should be exposed by the API.
48
48
/// If nothing is specified, the configured name formatter will be used.
49
- /// See <see cref="JsonApiOptions.ResourceNameFormatter " />.
49
+ /// See <see cref="IResourceNameFormatter " />.
50
50
/// </param>
51
51
IResourceGraphBuilder AddResource ( Type entityType , Type idType , string pluralizedTypeName = null ) ;
52
52
0 commit comments