Example #1
0
 public void DeleteGlobalParameters(string type, string name = null)
 {
     using (var connection = new NpgsqlConnection(ConnectionString))
     {
         WorkflowGlobalParameter.DeleteByTypeAndName(connection, type, name);
     }
 }