2 instantiations of SimpleModelWithValidation
Microsoft.AspNetCore.Mvc.FunctionalTests (2)
JsonInputFormatterTestBase.cs (2)
142var expected = new JsonFormatterController.SimpleModelWithValidation(123, "This is a very long name", StreetName: null); 173var expected = new JsonFormatterController.SimpleModelWithValidation(99, "TestName", "Some address");
4 references to SimpleModelWithValidation
FormatterWebSite (2)
Controllers\JsonFormatterController.cs (2)
114public ActionResult<SimpleModelWithValidation> RoundtripModelWithValidation([FromBody] SimpleModelWithValidation model)
Microsoft.AspNetCore.Mvc.FunctionalTests (2)
JsonInputFormatterTestBase.cs (2)
142var expected = new JsonFormatterController.SimpleModelWithValidation(123, "This is a very long name", StreetName: null); 173var expected = new JsonFormatterController.SimpleModelWithValidation(99, "TestName", "Some address");