Esempio n. 1
0
 public CartonController(ICartonService cartonService)
 {
     this.cartonService = cartonService;
 }
Esempio n. 2
0
 public DataServerController(string q_id1)
 {
     this.Q_id1         = q_id1;
     this.cartonService = CommonNinject.Kernel.Get <ICartonService>();
 }
Esempio n. 3
0
 public CartonController()
 {
     cartonService = new CartonService(db);
 }
Esempio n. 4
0
 public CartonController(ICartonService cartonService, CartonViewModel cartonViewModel)
     : base(cartonService, cartonViewModel)
 {
     this.cartonService = cartonService;
 }