//Check if event is paid or no
        // Example : Payment/IsPaid/Event/117/40100
        public int IsPaid(string ObjName, int ObjId, int UserId)
        {
            int response = PaymentDB.IsPaid(ObjName, ObjId, UserId, GetConfiguration().GetConnectionString(DEFAULT_CONNECTION));

            return(response);
        }