M141 Stop werktijd

M141 Stop werktijd

Werknemer 84022899837 wordt geregistreerd zodat deze stopt met werken

C#
        
        //Create the correct action according to the example
        var newWorkOutAction = new PosWorkAction(
            FpsFinancesModels.Company,
            _myFpsPos,
            FpsFinancesModels.TerminalTer1Bar,
            FpsFinancesModels.EmployeeElisa,
            FpsFinancesModels.BookingPeriod20240730)
        {
            SalesActionNumber = 1011,
            Type = WorkType.WORK_OUT
        };

        //Sign the action
        var result = await checkboxService.SignPosAction(newWorkOutAction, false, cancellationToken);

        //Handle the result accordingly
        Console.WriteLine($"Result with Signature {result.SignResult?.DigitalSignature}");