public ProductDto GetById(int id)
        {
            var product = productService.GetById(id);

            return(productMapper.MapperEntityToDto(product));
        }