This commit is contained in:
2020-01-27 18:16:16 +00:00
parent bda9c6c9ff
commit e80f24c419
9 changed files with 33 additions and 33 deletions

View File

@@ -149,7 +149,7 @@ namespace AyaNova.Api.Controllers
//Instantiate the business object handler
LocaleBiz biz = LocaleBiz.GetBiz(ct, HttpContext);
var l = await biz.GetSubset(inObj);
var l = await biz.GetSubsetAsync(inObj);
return Ok(ApiOkResponse.Response(l, true));
}
@@ -231,7 +231,7 @@ namespace AyaNova.Api.Controllers
try
{
if (!biz.PutLocaleItemDisplayText(oFromDb, inObj, oDbParent))
if (!biz.PutLocaleItemDisplayTextAsync(oFromDb, inObj, oDbParent))
{
return BadRequest(new ApiErrorResponse(biz.Errors));
}
@@ -293,7 +293,7 @@ namespace AyaNova.Api.Controllers
try
{
if (!biz.PutLocaleName(oFromDb, inObj))
if (!biz.PutLocaleNameAsync(oFromDb, inObj))
{
return BadRequest(new ApiErrorResponse(biz.Errors));
}