Ejemplo n.º 1
0
 public TopProfileCommands(
     IProfileService profileService,
     IRobbingItemService robbingItemService
     )
 {
     _profileService     = profileService;
     _robbingItemService = robbingItemService;
 }
Ejemplo n.º 2
0
 public ItemCommands(
     IRobbingItemService robbingItemService,
     IProfileService profileService,
     IGoldService goldService
     )
 {
     _robbingItemService = robbingItemService;
     _profileService     = profileService;
     _goldService        = goldService;
 }
Ejemplo n.º 3
0
 public CrimeCommands(
     IProfileService profileService,
     IGoldService goldService,
     IRobbingItemService robbingItemService
     )
 {
     _profileService     = profileService;
     _goldService        = goldService;
     _robbingItemService = robbingItemService;
 }
Ejemplo n.º 4
0
 public ExtendedProfileCommands(
     IProfileService profileService,
     IQuietModeService quietModeService,
     IMimicableService mimicableService,
     IRobbingItemService robbingItemService
     )
 {
     _profileService     = profileService;
     _quietModeService   = quietModeService;
     _mimicableService   = mimicableService;
     _robbingItemService = robbingItemService;
 }
Ejemplo n.º 5
0
 public GoldService(DbContextOptions <RPGContext> options, IProfileService profileService, IRobbingItemService robbingItemService)
 {
     _options            = options;
     _profileService     = profileService;
     _robbingItemService = robbingItemService;
 }