Ejemplo n.º 1
0
        public string GetKey(long eventId, EPDFType type)
        {
            var key = type + "~" + eventId + "~" + 0 + "~" + "ALL";

            return(Encrypt(key));
        }
Ejemplo n.º 2
0
        public string GetKey(long eventId, long customerId, EPDFType type)
        {
            var key = type + "~" + eventId + "~" + customerId + "~" + "SINGLE";

            return(Encrypt(key));
        }