We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 547de42 commit dac651bCopy full SHA for dac651b
JSONAPI/Json/JsonApiFormatter.cs
@@ -43,15 +43,25 @@ public JsonApiFormatter(IPluralizationService pluralizationService) : this()
43
_modelManager = new ModelManager(pluralizationService);
44
}
45
46
+ [Obsolete]
47
public IPluralizationService PluralizationService //FIXME: Deprecated, will be removed shortly
48
{
49
get
50
51
return _modelManager.PluralizationService;
52
53
54
+
55
private readonly IErrorSerializer _errorSerializer;
56
57
private readonly IModelManager _modelManager;
58
+ public IModelManager ModelManager
59
+ {
60
+ get
61
62
+ return _modelManager;
63
+ }
64
65
66
private Lazy<Dictionary<Stream, RelationAggregator>> _relationAggregators
67
= new Lazy<Dictionary<Stream, RelationAggregator>>(
0 commit comments