Exemplo n.º 1
0
        private ProductBase EnsureProductExistance(IProductMapper mapper, int id)
        {
            var product = mapper.Get(id);

            if (product == null)
                throw new ProductNotFoundException(id);

            return product;
        }