1 type derived from SimpleModel
FormatterWebSite (1)
Controllers\JsonOutputFormatterController.cs (1)
74
public class DerivedModel :
SimpleModel
4 instantiations of SimpleModel
FormatterWebSite (4)
Controllers\JsonOutputFormatterController.cs (4)
27
new
SimpleModel
{ Id = 10, Name = "Test", StreetName = "Some street" };
33
new
SimpleModel
{ Id = 10, Name = "TestName" },
34
new
SimpleModel
{ Id = 11, Name = "TestName1", StreetName = "Some street" },
48
new
SimpleModel
4 references to SimpleModel
FormatterWebSite (4)
Controllers\JsonOutputFormatterController.cs (4)
26
public ActionResult<
SimpleModel
> SimpleModelResult() =>
30
public ActionResult<IEnumerable<
SimpleModel
>> CollectionModelResult() =>
47
public ActionResult<
SimpleModel
> LargeObjectResult() =>
55
public ActionResult<
SimpleModel
> PolymorphicResult() => new DerivedModel