示例#1
0
 public static void SendNotificationSql(string eventName, string tableName, string acction, string jsonTableData)
 {
     Task.Factory.StartNew(() => {
         INotificationSql notificationSql = new NotificationSql();
         notificationSql.Notification(eventName, tableName, acction, jsonTableData, new Config(false, false).DealerInfo.ConectionStringNotification);
     });
 }
示例#2
0
    public static void SendNotificationSqlTest(string eventName, string tableName, string acction, string jsonTableData)
    {
        INotificationSql notificationSql = new NotificationSql();

        notificationSql.Notification(eventName, tableName, acction, jsonTableData, new Config(false, false).DealerInfo.ConectionStringNotification);
    }