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