예제 #1
0
 public async Task AddFramework([FromBody] Item item)
 {
     if (item != null)
     {
         await _repository.AddItem(item);
     }
 }