コード例 #1
0
ファイル: Service.cs プロジェクト: Viniciustes/GamesParseLog
 public Service(IRepositoryGame repositoryGame, IRepositoryKill repositoryKill, IRepositoryPlayer repositoryPlayer, IRepositoryFileParse repositoryFileParse)
 {
     _repositoryGame      = repositoryGame;
     _repositoryKill      = repositoryKill;
     _repositoryPlayer    = repositoryPlayer;
     _repositoryFileParse = repositoryFileParse;
 }
コード例 #2
0
 public ServiceFileRead(IRepositoryGame repositoryGame, IRepositoryKill repositoryKill, IRepositoryPlayer repositoryPlayer)
 {
     _repositoryGame   = repositoryGame;
     _repositoryKill   = repositoryKill;
     _repositoryPlayer = repositoryPlayer;
 }
コード例 #3
0
 public FMService(IRepositoryPlayer PlayerRepository, IRepositoryChampionshipCommand ChampionshipCommandRepository)
 {
     _PlayerRepository = PlayerRepository;
     _ChampionshipCommandRepository = ChampionshipCommandRepository;
 }
コード例 #4
0
 public PlayerBusiness(IRepositoryPlayer repositoryPlayer)
 {
     _iRepositoryPlayer = repositoryPlayer;
 }
コード例 #5
0
 public ServicePlayer(IRepositoryPlayer repository)
 {
     _repository = repository;
 }
コード例 #6
0
 public PlayerController(IRepositoryPlayer repo)
 {
     this.repo = repo;
 }
コード例 #7
0
 public ServicePlayer(IRepositoryPlayer repositoryPlayer)
 {
     _repositoryPlayer = repositoryPlayer;
 }