Esempio n. 1
0
 public RoomsController(IRoomAppService roomAppService,
                        IGameCultureRepository gameCultureRepository)
 {
     _gameCultureRepository = gameCultureRepository;
     _roomAppService        = roomAppService;
 }
 public CultureSelectionAppService(IGameCultureRepository gameCultureRepository,
                                   ICultureVmFactory cultureVmFactory)
 {
     _gameCultureRepository = gameCultureRepository;
     _cultureVmFactory      = cultureVmFactory;
 }