Example #1
0
 public async Task UpdatePropertyValues(int id, Action <Property> valueUpdater)
 {
     await entityPropertyUpdater.UpdateEntity(id, valueUpdater);
 }
Example #2
0
 public async Task UpdateContainerValues(int id, Action <PhysicalDocumentContainer> valueUpdater)
 {
     await entityPropertyUpdater.UpdateEntity(id, valueUpdater);
 }
Example #3
0
 public async Task UpdateDocumentTypeValues(int id, Action <DocumentType> valueUpdater)
 {
     await entityPropertyUpdater.UpdateEntity(id, valueUpdater);
 }