private ProductBase EnsureProductExistance(IProductMapper mapper, int id) { var product = mapper.Get(id); if (product == null) throw new ProductNotFoundException(id); return product; }