Changes
<source lang="csharp">
UBIK.Kernel.Utility.SequenceGenerator seqGenerator = new UBIK.Kernel.Utility.SequenceGenerator(this.Environment); //no "number group" is managed as one group itself
if (seqGenerator.TryCreateNewSequentialID(out int seqID))
{
// do something with the given ID: ContentClass myContent; myContent.TrySetValue<int>("SEQUENCE", seqID); myContent.Save();
}
</source>
<source lang="csharp">
ContentClass myContent;
UBIK.Kernel.Utility.SequenceGenerator seqGenerator = new UBIK.Kernel.Utility.SequenceGenerator(this.Environment, "GROUP01");
myContent.Save();
}
</source>
if (seqGenerator.TrySetSequentialID(myContent, "SEQUENCE", out int seqID))
{