Beispiel #1
0
 public TalentServices(ITalentIdentificationRepository talentIdentificationRepository, ITalentNoteRepository talentNoteRepository, IAttributesOfTalentRepository attributesOfTalentRepository, IPlayerAttributeRepository playerAttributeRepository, IScoutRepository scoutRepository)
 {
     _talentIdentificationRepository = talentIdentificationRepository;
     _talentNoteRepository = talentNoteRepository;
     _attributesOfTalentRepository = attributesOfTalentRepository;
     _playerAttributeRepository = playerAttributeRepository;
     _scoutRepository = scoutRepository;
 }
 public PlayerAttributeServices(IPlayerAttributeRepository playerAttributeRepository)
 {
     _playerAttributeRepository = playerAttributeRepository;
 }
 public PlayerAttributeController(IPlayerAttributeRepository playerAttributeRepository)
 {
     _playerAttributeRepository = playerAttributeRepository;
 }