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