public void Execute(string id) { var item = _dataGateway.Get(id); if (item == null) { throw new BusinessException($"Item with id '{id}' does not exist."); } _dataGateway.Remove(item); }