Ejemplo n.º 1
0
 public WishLogic(IWishContext context)
 {
     wishRepository = new WishRepository(context);
 }
Ejemplo n.º 2
0
 public UserController(IUserContext userContext, IWishContext wishContext, IOrderContext orderContext)
 {
     userLogic  = new UserLogic(userContext);
     wishLogic  = new WishLogic(wishContext);
     orderLogic = new OrderLogic(orderContext);
 }
Ejemplo n.º 3
0
 public WishController(IProductContext productContext, IWishContext wishContext)
 {
     productLogic = new ProductLogic(productContext);
     wishLogic    = new WishLogic(wishContext);
 }
Ejemplo n.º 4
0
 public WishRepository(IWishContext context)
 {
     Context = context;
 }