Ejemplo n.º 1
0
 public ArmorsController(
     IArmorsService armorsService,
     ICommentsService commentsService)
 {
     this.armorsService   = armorsService;
     this.commentsService = commentsService;
 }
Ejemplo n.º 2
0
 public HomeController(
     IWeaponsService weaponsService,
     IArmorsService armorsService,
     IMemoryCache cache)
 {
     this.weaponsService = weaponsService;
     this.armorsService  = armorsService;
     this.cache          = cache;
 }
Ejemplo n.º 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;
 }