From 8acd67a89d3e74e6e37d049945bf34bf0ed1a554 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Fri, 17 Feb 2017 18:18:42 +0100 Subject: [PATCH] this Book action is better named Profiles --- Yavsc/ApiControllers/FrontOfficeApiController.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Yavsc/ApiControllers/FrontOfficeApiController.cs b/Yavsc/ApiControllers/FrontOfficeApiController.cs index 22c68a7d..94244ef1 100644 --- a/Yavsc/ApiControllers/FrontOfficeApiController.cs +++ b/Yavsc/ApiControllers/FrontOfficeApiController.cs @@ -15,10 +15,10 @@ namespace Yavsc.ApiControllers dbContext = context; } - [HttpGet,Route("Book/{actCode}")] - IEnumerable Book (string actCode) + [HttpGet,Route("Profiles/{actCode}")] + IEnumerable Profiles (string actCode) { return dbContext.ListPerformers(actCode); } } -} \ No newline at end of file +}