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