This commit is contained in:
2018-09-26 21:29:26 +00:00
parent 40c0265dcb
commit c6ef933c99
4 changed files with 34 additions and 74 deletions

View File

@@ -213,7 +213,6 @@ namespace AyaNova.Api.Controllers
return StatusCode(409, new ApiErrorResponse(ApiErrorCode.CONCURRENCY_CONFLICT));
}
}
return Ok(new ApiOkResponse(new { ConcurrencyToken = o.ConcurrencyToken }));
}
@@ -245,7 +244,6 @@ namespace AyaNova.Api.Controllers
//Instantiate the business object handler
UserBiz biz = UserBiz.GetBiz(ct, HttpContext);
var o = await ct.User.SingleOrDefaultAsync(m => m.Id == id);
if (o == null)