Beispiel #1
0
 public CreatureController(ICreatureService creatureService, IClassService classService, IItemService itemService, IRaceService raceService, ITerritoryService territoryService)
 {
     this._creatureService  = creatureService;
     this._classService     = classService;
     this._itemService      = itemService;
     this._raceService      = raceService;
     this._territoryService = territoryService;
 }
Beispiel #2
0
        public EmployeeModule()
        {
            this.employeeService  = new EmployeeService();
            this.territoryService = new TerritoryService();

            this.Initialize();
            this.RegisterClickHandlers();
        }
Beispiel #3
0
        public EmployeeModule()
        {
            this.employeeService = new EmployeeService();
            this.territoryService = new TerritoryService();

            this.Initialize();
            this.RegisterClickHandlers();
        }
Beispiel #4
0
 public CharacterController(ICharacterService characterService, IClassService classService, IItemService itemService, IRaceService raceService, ITerritoryService territoryService)
 {
     this._characterService = characterService;
     this._classService     = classService;
     this._itemService      = itemService;
     this._raceService      = raceService;
     this._territoryService = territoryService;
 }
Beispiel #5
0
 public TerritoryTableController(IRegionService regionService, ITerritoryService territoryService)
 {
     _regionService    = regionService;
     _territoryService = territoryService;
 }
Beispiel #6
0
 public TerritoryController(ITerritoryService territoryService)
 {
     this._TerritoryService = territoryService;
 }
Beispiel #7
0
 public TerritoryController(ITerritoryService territoryService, TerritoryViewModel territoryViewModel)
     : base(territoryService, territoryViewModel)
 {
 }
Beispiel #8
0
 public TerritoryController(ITerritoryService TerritoryService)
 {
     this.TerritoryService = TerritoryService;
 }