public Task <bool> Update(HumanTaskDefinitionAggregate humanTaskDef, CancellationToken token)
 {
     _humanTaskDBContext.Entry(humanTaskDef).State = EntityState.Modified;
     return(Task.FromResult(true));
 }
 public Task <bool> Update(HumanTaskInstanceAggregate humanTaskInstance, CancellationToken token)
 {
     _dbContext.Entry(humanTaskInstance).State = EntityState.Modified;
     return(Task.FromResult(true));
 }
 public Task <bool> Update(NotificationDefinitionAggregate notificationDef, CancellationToken token)
 {
     _dbContext.Entry(notificationDef).State = EntityState.Modified;
     return(Task.FromResult(true));
 }