20 lines
551 B
C#
20 lines
551 B
C#
// Copyright (c) Microsoft Open Technologies, Inc. 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;
|
|
|
|
namespace BasicWebSite.Controllers
|
|
{
|
|
[Route("/appointments")]
|
|
public class Appointments : ApplicationBaseController
|
|
{
|
|
[HttpGet("")]
|
|
public IActionResult Get()
|
|
{
|
|
return new ContentResult
|
|
{
|
|
Content = "2 appointments available."
|
|
};
|
|
}
|
|
}
|
|
} |