M140 Start werktijd

Start werktijd

Werknemer 80113078968 wordt geregistreerd zodat deze start met werken

C#
        
        //Create the correct action according to the example
        var newWorkInAction = new PosWorkAction(
            FpsFinancesModels.Company,
            _myFpsPos,
            FpsFinancesModels.TerminalPos2Rec,
            FpsFinancesModels.EmployeeSammy)
        {
            SalesActionNumber = 1010,
            BookingDate = DateTime.Now,
            BookingPeriodId = Guid.Parse("dffcd829-a0e5-41ca-a0ae-9eb887f95637"),
            Type = WorkType.WORK_IN
        };

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

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