This commit is contained in:
2025-03-16 20:31:49 +01:00
parent 9d113d0b49
commit 0e06382eee
4 changed files with 107 additions and 10 deletions
@@ -23,7 +23,7 @@ namespace WorkFlowCheck.API.Controllers
{
IsSuccess = true,
};
var checkListHeaderDTO = await _checkListService.GetCheckListHeader(id );
var checkListHeaderDTO = await _checkListService.GetCheckListHeaderAsync(id );
if (checkListHeaderDTO != null)
{
@@ -50,7 +50,7 @@ namespace WorkFlowCheck.API.Controllers
try
{
var response = await _checkListService.StartNew(request);
var response = await _checkListService.StartNewCheckListAsync(request);
}
catch (Exception ex)
{