public string GetOutput(byte[] bytes)
        {
            if (bytes == null)
            {
                return(null);
            }

            var bytesNormalized = ByteArrayUtils.NormalizeTo2Bytes(bytes);

            return(ByteArrayUtils.ByteArrayAsUInt16(bytesNormalized));
        }
        public string GetOutput(byte[] bytes)
        {
            if (bytes == null)
            {
                return(null);
            }

            var bytesReversed = ByteArrayUtils.ReverseBytes10(bytes);

            return(ByteArrayUtils.ByteArrayAsUInt16(bytesReversed));
        }