aspnetcore/test/WebSites/ModelBindingWebSite/Controllers/PropertiesGetCreatedControl...

16 lines
426 B
C#

// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.AspNet.Mvc;
using ModelBindingWebSite.Models;
namespace ModelBindingWebSite.Controllers
{
public class PropertiesController : Controller
{
public Company GetCompany(Company c)
{
return c;
}
}
}