示例#1
0
 public void Put(Item item)
 {
     if (item == null)
     {
         throw new ArgumentNullException(nameof(item));
     }
     _folioRepository.Put($"{path}/{item.Id}", _jsonService.SerializeObject(item));
 }