Javítás

This commit is contained in:
2025-04-08 17:46:22 +02:00
parent ac48e676df
commit a394c643a2
6 changed files with 39 additions and 17 deletions
@@ -365,8 +365,8 @@ namespace WorkFlowCheck.API.Controllers
return retVal;
}
[HttpPost("UpdateCheckListHeader")]
public async Task<ApiResponseDTO<string>> UpdateCheckListHeader([FromBody] CheckListHeaderDTO checkListHeaderDTO)
[HttpPost("SendCheckListHeader")]
public async Task<ApiResponseDTO<string>> SendCheckListHeader([FromBody] CheckListHeaderDTO checkListHeaderDTO)
{
var retVal = new ApiResponseDTO<string>()
{
@@ -375,7 +375,7 @@ namespace WorkFlowCheck.API.Controllers
try
{
var result = await _syncService.UpdateCheckListHeaderAsync(checkListHeaderDTO);
var result = await _syncService.SendCheckListHeaderAsync(checkListHeaderDTO);
retVal.Data = "Sikeres beküldés!";
}