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