Example #1
0
 public Service(IRepositoryGame repositoryGame, IRepositoryKill repositoryKill, IRepositoryPlayer repositoryPlayer, IRepositoryFileParse repositoryFileParse)
 {
     _repositoryGame      = repositoryGame;
     _repositoryKill      = repositoryKill;
     _repositoryPlayer    = repositoryPlayer;
     _repositoryFileParse = repositoryFileParse;
 }
Example #2
0
 public ServiceFileRead(IRepositoryGame repositoryGame, IRepositoryKill repositoryKill, IRepositoryPlayer repositoryPlayer)
 {
     _repositoryGame   = repositoryGame;
     _repositoryKill   = repositoryKill;
     _repositoryPlayer = repositoryPlayer;
 }
Example #3
0
 public FMService(IRepositoryPlayer PlayerRepository, IRepositoryChampionshipCommand ChampionshipCommandRepository)
 {
     _PlayerRepository = PlayerRepository;
     _ChampionshipCommandRepository = ChampionshipCommandRepository;
 }
 public PlayerBusiness(IRepositoryPlayer repositoryPlayer)
 {
     _iRepositoryPlayer = repositoryPlayer;
 }
Example #5
0
 public ServicePlayer(IRepositoryPlayer repository)
 {
     _repository = repository;
 }
Example #6
0
 public PlayerController(IRepositoryPlayer repo)
 {
     this.repo = repo;
 }
Example #7
0
 public ServicePlayer(IRepositoryPlayer repositoryPlayer)
 {
     _repositoryPlayer = repositoryPlayer;
 }