コード例 #1
0
 public AddProductToCartSlave(IUserShopper shopper, IStoreDL storeDL)
 {
     _shopper   = shopper;
     storeLogic = storeDL;
 }
コード例 #2
0
ファイル: ViewStoreInfoSlave.cs プロジェクト: maorRoz/Sadna
 public ViewStoreInfoSlave(IUserShopper shopper, IStoreDL storeDL)
 {
     _shopper   = shopper;
     storeLogic = storeDL;
 }
コード例 #3
0
ファイル: StoreShoppingService.cs プロジェクト: maorRoz/Sadna
 public StoreShoppingService(IUserShopper shopper)
 {
     _shopper = shopper;
     stores   = new LinkedList <Store>();
     storeDL  = StoreDL.Instance;
 }
コード例 #4
0
ファイル: SearchProductSlave.cs プロジェクト: maorRoz/Sadna
 public SearchProductSlave(IUserShopper shopper, IStoreDL storeDl)
 {
     _shopper    = shopper;
     _storeLogic = storeDl;
 }
コード例 #5
0
ファイル: OpenStoreSlave.cs プロジェクト: maorRoz/Sadna
 public OpenStoreSlave(IUserShopper shopper, IStoreDL storeDL)
 {
     _shopper = shopper;
     storeDB  = storeDL;
 }
コード例 #6
0
 public GetAllCategoryNamesSlave(IUserShopper shopper, IStoreDL storeDl)
 {
     _shopper    = shopper;
     _storeLogic = storeDl;
 }
コード例 #7
0
 public GetAllDiscountCategoriesInStoreSlave(IUserShopper shopper, IStoreDL storeDl)
 {
     _shopper    = shopper;
     _storeLogic = storeDl;
 }