示例#1
0
 public AddProductToCartSlave(IUserShopper shopper, IStoreDL storeDL)
 {
     _shopper   = shopper;
     storeLogic = storeDL;
 }
示例#2
0
 public ViewStoreInfoSlave(IUserShopper shopper, IStoreDL storeDL)
 {
     _shopper   = shopper;
     storeLogic = storeDL;
 }
示例#3
0
 public StoreShoppingService(IUserShopper shopper)
 {
     _shopper = shopper;
     stores   = new LinkedList <Store>();
     storeDL  = StoreDL.Instance;
 }
示例#4
0
 public SearchProductSlave(IUserShopper shopper, IStoreDL storeDl)
 {
     _shopper    = shopper;
     _storeLogic = storeDl;
 }
示例#5
0
 public OpenStoreSlave(IUserShopper shopper, IStoreDL storeDL)
 {
     _shopper = shopper;
     storeDB  = storeDL;
 }
示例#6
0
 public GetAllCategoryNamesSlave(IUserShopper shopper, IStoreDL storeDl)
 {
     _shopper    = shopper;
     _storeLogic = storeDl;
 }
 public GetAllDiscountCategoriesInStoreSlave(IUserShopper shopper, IStoreDL storeDl)
 {
     _shopper    = shopper;
     _storeLogic = storeDl;
 }