Beispiel #1
0
        public string CreateSerial(uint productID, uint customerID, DateTime date)
        {
            ulong serialTemp      = _serial.CreateSerial(productID, customerID, date);
            ulong serialEncrypted = _algorithm.Encrypt(serialTemp);

            return(_translation.TranslateNumber(serialEncrypted));
        }