public ShopperApplicationService(
     IFindShopperRepository findShopperRepository,
     IMapper typeMapper,
     IAdaptEntityToViewModel <Shopper, ShopperViewModel> shopperAdapter
     )
 {
     this.findShopperRepository = findShopperRepository;
     this.typeMapper            = typeMapper;
     this.shopperAdapter        = shopperAdapter;
 }
 public PaymentExistsShopperAssociatedPreCondition(IFindShopperRepository findShopperRepository)
 {
     this.findShopperRepository = findShopperRepository;
 }