示例#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;
 }
示例#2
0
 public GameService(Repository.Games Games, PokedexService PokedexService)
 {
     this.Games_ = Games;
     this.PokedexService_ = PokedexService;
 }