25 lines
689 B
C#
25 lines
689 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.AspNetCore.Mvc;
|
|
|
|
namespace ControllersFromServicesClassLibrary
|
|
{
|
|
public class EmployeeRecords : Controller
|
|
{
|
|
[HttpPut("/employee/update_records")]
|
|
public IActionResult UpdateRecords(string recordId)
|
|
{
|
|
return Content("Updated record " + recordId);
|
|
}
|
|
|
|
[HttpPost]
|
|
// This action uses conventional routing.
|
|
public IActionResult Save(string id)
|
|
{
|
|
return Content("Saved record employee #" + id);
|
|
}
|
|
|
|
}
|
|
}
|