public ItemBrandIsNotChecker(IStringResourceProvider stringResourceProvider, IGetCartItemsBySKUList getCartItemsBySKUList)
 {
     _stringResourceProvider = stringResourceProvider;
     _getCartItemsBySKUList  = getCartItemsBySKUList;
 }
 public GetCartItemBasedApplicationProducts(IGetCartItemsBySKUList getCartItemsBySKUList,IGetCartItemsByCategoryIdList getCartItemsByCategoryIdList)
 {
     _getCartItemsBySKUList = getCartItemsBySKUList;
     _getCartItemsByCategoryIdList = getCartItemsByCategoryIdList;
 }
Example #3
0
 public GetCartItemBasedApplicationProducts(IGetCartItemsBySKUList getCartItemsBySKUList, IGetCartItemsByCategoryIdList getCartItemsByCategoryIdList)
 {
     _getCartItemsBySKUList        = getCartItemsBySKUList;
     _getCartItemsByCategoryIdList = getCartItemsByCategoryIdList;
 }
 public ItemDoesNotHaveSKUChecker(IStringResourceProvider stringResourceProvider, IGetCartItemsBySKUList getCartItemsBySKUList)
 {
     _stringResourceProvider = stringResourceProvider;
     _getCartItemsBySKUList  = getCartItemsBySKUList;
 }