M170 Training Start werktijd

M170 Training Start werktijd

Een werknemer in opleiding wenst aan te leren hoe een werknemer zijn tijd moet starten. Via de training modus wordt dit aangemaakt voor werknemer 75061189702.

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

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

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