Ejemplo n.º 1
0
 public Importer()
 {
     this.GameStateService = this.ServiceProvider.GetService <IGameStateService>();
     this.PGNService       = this.ServiceProvider.GetService <IPGNService>();
     this.GameService      = this.ServiceProvider.GetService <IGameService>();
     this.PGNFileService   = this.ServiceProvider.GetService <IPGNFileService>();
 }
Ejemplo n.º 2
0
 public GameStateService(INotationService notationService, IPGNService pgnService, IMoveService moveService, IAttackService attackService)
 {
     _notationService = notationService;
     _pgnService      = pgnService;
     _moveService     = moveService;
     _attackService   = attackService;
 }
Ejemplo n.º 3
0
 public NotationService(IPGNService pgnService)
 {
     _pgnService = pgnService;
 }
Ejemplo n.º 4
0
 public PGNTests()
 {
     _gameStateService = ServiceProvider.GetService <IGameStateService>();
     _pgnService       = ServiceProvider.GetService <IPGNService>();
 }