Example #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;
 }
Example #2
0
 public ServerService(Data.PokedexModel Model)
 {
     Model_ = Model;
 }
Example #3
0
 public Games(Data.PokedexModel Model)
 {
     Model_ = Model;
 }
Example #4
0
 public Updates(Data.PokedexModel Model)
 {
     this.Model_ = Model;
 }
Example #5
0
 public Generations(Data.PokedexModel Model, SLLog Log)
 {
     Model_ = Model;
     Log_ = Log;
 }
Example #6
0
 public EggGroups(Data.PokedexModel Model)
 {
     Model_ = Model;
 }
Example #7
0
 public Pokedexes(Repository.Games Games, Data.PokedexModel Model, SLLog Log)
 {
     this.Games_ = Games;
     this.Model_ = Model;
     this.Log_ = Log;
 }
Example #8
0
 public TMs(Repository.Games Games, Data.PokedexModel Model)
 {
     this.Games_ = Games;
     this.Model_ = Model;
 }