I am a software engineer living in Slovenia. I have several years of experience in ASP.NET, SQL, Java, Python, and other programming languages. Most of my work is related to WMS systems and business automation in C#.

This is my website which will contain day-to-day information about software engineering with useful information about current projects and tips on development aimed to help people improve their understanding of programming as well as personal promotion and business inquiries.

I am currently employed by IN SIST d.o.o. as a .NET software engineer.

Regards,

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
 private async void SavePositions(List<MorePallets> payload)
        {
            progress = new ProgressDialogClass();
            progress.ShowDialogSync(this, "Saving position.");
            foreach (var x in payload)
            {
                await SaveMoveItemBatch(x);
            }
            progress.StopDialogSync();
        }