Example #1
0
 public async Task Remove(ResourceLogHistory resourceLogHistory)
 => await _repository.Delete(resourceLogHistory.ToDocument());
Example #2
0
 public async Task UpdateAsync(ResourceLogHistory history)
 => await _repository.Update(history.ToDocument());
Example #3
0
 public async Task AddAsync(ResourceLogHistory history)
 => await _repository.AddAsync(history.ToDocument());