示例#1
0
 public WeaponsController(
     IWeaponsService weaponsService,
     ICommentsService commentsService)
 {
     this.weaponsService  = weaponsService;
     this.commentsService = commentsService;
 }
示例#2
0
 public HomeController(
     IWeaponsService weaponsService,
     IArmorsService armorsService,
     IMemoryCache cache)
 {
     this.weaponsService = weaponsService;
     this.armorsService  = armorsService;
     this.cache          = cache;
 }
示例#3
0
 public CommentsController(
     IWeaponsService weaponsService,
     IArmorsService armorsService,
     ICommentsService commentsService)
 {
     this.weaponsService  = weaponsService;
     this.armorsService   = armorsService;
     this.commentsService = commentsService;
 }
 public HomeController(IWeaponsService weaponsService, IArmorsService armorsService)
 {
     this.weaponsService = weaponsService;
     this.armorsService  = armorsService;
 }