Exemplo n.º 1
0
 public VMFacade(IFactionPlayerService factionPlayerService, IFactionService factionService, IPlayerService playerService)
 {
     _factionPlayerService = factionPlayerService;
     _factionService       = factionService;
     _playerService        = playerService;
     _userConverter        = new UserConverter();
 }
 public PlayerVmFacade(IFactionPlayerService fps, IFactionService fs, IPlayerService ps)
 {
     _factionPlayerService = fps;
     _factionService       = fs;
     _playerService        = ps;
     _playerConverter      = new PlayerConverter();
     //_playerConverter = playerConverter;
 }
Exemplo n.º 3
0
 public FactionVmFacade(IFactionPlayerService fps, IFactionService fs, IPlayerService ps)//, Model.Converter.Converter<Faction, FactionDto> factionConverter)
 {
     _factionPlayerService = fps;
     _factionService       = fs;
     _playerService        = ps;
     //_factionConverter = factionConverter;
     _factionConverter = new FactionConverter();
     _playerConverter  = new PlayerConverter();
 }