public int CreateCrmOperationFailureAlert(int tenant, string user, int messageId, AlertTypes type)
        {
            var data = new CrmOperationFailure
            {
                message_id = messageId
            };

            return(CreateAlert(tenant, user, -1, type, data));
        }
示例#2
0
        public int CreateCrmOperationFailureAlert(int tenant, string id_user, int message_id, AlertTypes type)
        {
            var data = new CrmOperationFailure
            {
                type       = (int)type,
                message_id = message_id
            };

            return(CreateAlert(tenant, id_user, data));
        }
        public int CreateCrmOperationFailureAlert(int tenant, string user, int messageId, AlertTypes type)
        {
            var data = new CrmOperationFailure
                {
                    message_id = messageId
                };

            return CreateAlert(tenant, user, -1, type, data);
        }
        public int CreateCrmOperationFailureAlert(int tenant, string id_user, int message_id, AlertTypes type)
        {
            var data = new CrmOperationFailure
                {
                    type = (int) type,
                    message_id = message_id
                };

            return CreateAlert(tenant, id_user, data);
        }