Esempio n. 1
0
 public UserService(Data.PokedexModel Model, Services.ServerService ServerService,
     GameService GameService, PokedexService PokedexService,
     AbilityService AbilityService, EggGroupService EggGroupService,
     BerryService BerryService, TmService TmService, EmailService EmailService)
 {
     this.Model_ = Model;
     this.ServerService_ = ServerService;
     this.GameService_ = GameService;
     this.PokedexService_ = PokedexService;
     this.AbilityService_ = AbilityService;
     this.EggGroupService_ = EggGroupService;
     this.BerryService_ = BerryService;
     this.TmService_ = TmService;
     this.EmailService_ = EmailService;
 }
Esempio n. 2
0
 public ServerService(Data.PokedexModel Model)
 {
     Model_ = Model;
 }
Esempio n. 3
0
 public Games(Data.PokedexModel Model)
 {
     Model_ = Model;
 }
Esempio n. 4
0
 public Updates(Data.PokedexModel Model)
 {
     this.Model_ = Model;
 }
Esempio n. 5
0
 public Generations(Data.PokedexModel Model, SLLog Log)
 {
     Model_ = Model;
     Log_ = Log;
 }
Esempio n. 6
0
 public EggGroups(Data.PokedexModel Model)
 {
     Model_ = Model;
 }
Esempio n. 7
0
 public Pokedexes(Repository.Games Games, Data.PokedexModel Model, SLLog Log)
 {
     this.Games_ = Games;
     this.Model_ = Model;
     this.Log_ = Log;
 }
Esempio n. 8
0
 public TMs(Repository.Games Games, Data.PokedexModel Model)
 {
     this.Games_ = Games;
     this.Model_ = Model;
 }