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