public AccountController(ICountryInitRepository initRepo, ICountryRepository repo, IGamerRepository gamerRepo)
 {
     logger.Info("AccountController");
     countryInitRepository = initRepo;
     countryRepository = repo;
     gamerRepository = gamerRepo;
 }
示例#2
0
 public MapController(ICountryInitRepository repo, ICountryRepository countryRepo, IGamerRepository gamerRepo)
 {
     logger.Info("Map: MapController");
     repository = repo;
     countryRepository = countryRepo;
     gamerRepository = gamerRepo;
 }