Changeset 1759 for trunk/sources
- Timestamp:
- 05/08/09 12:45:58 (16 years ago)
- Location:
- trunk/sources
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.DataAccess.ADOHelper/3.2/ManyToManyRelationHelper.cs
r1758 r1759 27 27 28 28 public void UpdateRelationships(Guid objectA, 29 IList<Guid> relationships , int childIndex) {29 IList<Guid> relationships) { 30 30 UpdateRelationships(objectA, relationships, null); 31 31 } -
trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/3.2/ClientGroupAdapter.cs
r1758 r1759 127 127 128 128 ManyToManyRelationHelper.UpdateRelationships(group.Id, 129 relationships , 1);129 relationships); 130 130 } 131 131 } … … 159 159 //delete all relationships 160 160 ManyToManyRelationHelper.UpdateRelationships(group.Id, 161 new List<Guid>() , 1);161 new List<Guid>()); 162 162 163 163 return base.doDelete(group) && -
trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/3.2/JobAdapter.cs
r1758 r1759 321 321 322 322 ManyToManyRelationHelper.UpdateRelationships( 323 obj.Id, relationships , 1);323 obj.Id, relationships); 324 324 } 325 325 … … 340 340 //delete all relationships 341 341 ManyToManyRelationHelper.UpdateRelationships(job.Id, 342 new List<Guid>() , 1);342 new List<Guid>()); 343 343 344 344 //delete orphaned pluginInfos -
trunk/sources/HeuristicLab.Security.ADODataAccess/3.2/UserGroupAdapter.cs
r1758 r1759 100 100 101 101 ManyToManyRelationHelper.UpdateRelationships(group.Id, 102 relationships , 0);102 relationships); 103 103 } 104 104 } … … 108 108 //delete all relationships 109 109 ManyToManyRelationHelper.UpdateRelationships(group.Id, 110 new List<Guid>() , 0);110 new List<Guid>()); 111 111 112 112 return base.doDelete(group) &&
Note: See TracChangeset
for help on using the changeset viewer.