public BarrageExtController(IBarrageService barrageService,
                             IBarrageExtService barrageExtService,
                             IBarrageSummaryService barrageSummaryService)
     : base(barrageService)
 {
     _barrageSummaryService = barrageSummaryService;
     _barrageExtService     = barrageExtService;
     _barrageService        = barrageService;
 }
 public BarrageController(IBarrageService objService)
     : base(objService)
 {
     _objService = objService;
 }
Example #3
0
 public BarrageController(IBarrageService barrageService)
 {
     _barrageService = barrageService;
 }