Exemplo n.º 1
0
 public ItemController(ebuyData ebuy)
 {
     e          = ebuy;
     customerBL = new CustomerBL(e);
     productBL  = new ProductBL(e);
 }
Exemplo n.º 2
0
 public ProductController(ebuyData ebuy)
 {
     e = ebuy;
 }
Exemplo n.º 3
0
 public AlertController(ebuyData ebuy)
 {
     e             = ebuy;
     messagingPush = new MessagingPushController(e);
     customerBL    = new CustomerBL(e);
 }
Exemplo n.º 4
0
 public CustomerBL(ebuyData ebuy)
 {
     e = ebuy;
 }
Exemplo n.º 5
0
 public PushController(ebuyData ebuy)
 {
     e = ebuy;
 }
 public MessagingPushController(ebuyData ebuy)
 {
     e = ebuy;
     productController = new ProductController(e);
 }
Exemplo n.º 7
0
 public UserController(ebuyData ebuy)
 {
     e        = ebuy;
     user_dal = new UserDal(e);
 }
Exemplo n.º 8
0
 public ProductBL(ebuyData ebuy)
 {
     e          = ebuy;
     customerBL = new CustomerBL(e);
 }