public void AProductWithInsufficientStock()
 {
     _repository
     .Setup(x => x.GetProductAsync(It.IsAny <string>()))
     .ReturnsAsync(ProductFactory.CreateWithoutStock());
 }