Exemple #1
0
 public BattleHub(IBattleEngine engine, IBattleFactory factory, JsonMessageBinder binder, ICharacteristicService ChService)
 {
     Engine         = engine;
     Factory        = factory;
     Binder         = binder;
     this.ChService = ChService;
     base.InitMapping();
 }
 public CharacteristicValueService(
     StoreContext context,
     IIdentityService identityService,
     ICharacteristicService characteristicService,
     IScopedParameters scopedParameters,
     IAuthorizationParameters <CharacteristicValue> authoriationParameters,
     IAppLogger <Service <CharacteristicValue> > logger)
     : base(context, identityService, scopedParameters, authoriationParameters, logger)
 {
     _characteristicService = characteristicService;
 }
Exemple #3
0
 public CharacteristicController(ICharacteristicService service)
 {
     _service = service ?? throw new ArgumentNullException(nameof(service));
 }
 public CharacteristicValuesControllerTests(ITestOutputHelper output) : base(output)
 {
     _categoryService       = Resolve <ICategoryService>();
     _characteristicService = Resolve <ICharacteristicService>();
 }
Exemple #5
0
 public CharacteristicController(ICharacteristicService CharacteristicService)
 {
     _characteristicService = CharacteristicService;
 }
Exemple #6
0
 public HomeController(ICharacteristicService chService)
 {
     ChService = chService;
 }