This commit is contained in:
2020-05-07 23:32:49 +00:00
parent 21a3313e94
commit 3117a3f09c
21 changed files with 42 additions and 44 deletions

View File

@@ -164,7 +164,7 @@ namespace AyaNova.Api.Controllers
/// Post Customer
/// </summary>
/// <param name="inObj"></param>
/// <param name="apiVersion">Automatically filled from route path, no need to specify in body</param>
/// <param name="apiVersion">From route path</param>
/// <returns></returns>
[HttpPost]
public async Task<IActionResult> PostCustomer([FromBody] Customer inObj, ApiVersion apiVersion)
@@ -196,7 +196,7 @@ namespace AyaNova.Api.Controllers
/// Duplicate Customer
/// </summary>
/// <param name="id">Create a duplicate of this items id</param>
/// <param name="apiVersion">Automatically filled from route path, no need to specify in body</param>
/// <param name="apiVersion">From route path</param>
/// <returns></returns>
[HttpPost("duplicate/{id}")]
public async Task<IActionResult> DuplicateCustomer([FromRoute] long id, ApiVersion apiVersion)