예제 #1
0
 public async Task DeleteToolAsync(string toolName)
 {
     await _toolRepository.Delete(new Tool()
     {
         Name = toolName
     });
 }