public TechnologiesController(IBuildingsService buildingsService, ITechnologiesService techService, IPlayerService playerService, ILogicProvider logic)
 {
     this.buildingsService = buildingsService;
     this.techService = techService;
     this.playerService = playerService;
     this.logic = logic;
 }
Example #2
0
 public AboutController(IApartmentsService apartmentsService, ICitiesService citiesService, IBuildingsService buildingsService, IUsersService usersService)
 {
     this.apartmentsService = apartmentsService;
     this.citiesService     = citiesService;
     this.buildingsService  = buildingsService;
     this.usersService      = usersService;
 }
 public FleetController(IPlayerService playerService, IBuildingsService buildingsService, IFleetService fleetService, ITechnologiesService techService, ILogicProvider logic, IBackgroundWorkerService<IFleetService> worker)
 {
     this.playerService = playerService;
     this.buildingsService = buildingsService;
     this.fleetService = fleetService;
     this.techService = techService;
     this.logic = logic;
     this.worker = worker;
 }
Example #4
0
        public BuildingsViewModel(IBuildingsService buildingsService, IBuildingService buildingService)
        {
            Title = "Buildings";

            _buildingsService = buildingsService;
            _buildingService  = buildingService;

            Buildings = new ObservableCollectionFast <BuildingRow>();
        }
 public ApartmеntsController(
     IApartmentService apartmentService,
     ICitiesService citiesService,
     IBuildingsService buildingService,
     UserManager <ApplicationUser> userManager)
 {
     this.apartmentService = apartmentService;
     this.citiesService    = citiesService;
     this.buildingService  = buildingService;
     this.userManager      = userManager;
 }
Example #6
0
 public ReportsController(
     IReportsService reportsService,
     IApartmentService apartmentService,
     IBuildingsService buildingService,
     ICalculationMonthlyFeesService calculationMonthlyFeesService,
     UserManager <ApplicationUser> userManager)
 {
     this.reportsService   = reportsService;
     this.apartmentService = apartmentService;
     this.buildingService  = buildingService;
     this.calculationMonthlyFeesService = calculationMonthlyFeesService;
     this.userManager = userManager;
 }
        public BuildingsViewModel(
            IBaseService baseService,
            IBuildingsService buildingsService,
            IEventAggregator eventAggregator
            ) : base(baseService)
        {
            _baseService      = baseService;
            _buildingsService = buildingsService;
            _eventAggregator  = eventAggregator;

            TabName = "Byggnadsverk";

            AddBuildingUIEventHandler = new CustomDelegateCommand(ExecuteAddBuildingUIEventHandler, o => true);

            _eventAggregator.GetEvent <NewFiefLoadedEvent>().Subscribe(ExecuteNewFiefLoadedEvent);
        }
 public BuildingsController(IBuildingsService service)
 {
     _buildingsService = service;
 }
Example #9
0
 public DealService(IDealsRepository dealsRepository, IBuildingsService buildingsService)
 {
     this._dealsRepository = dealsRepository;
     this._buildService    = buildingsService;
 }
Example #10
0
 public BuildingsController(IBuildingsService buildingsService)
 {
     this.buildingsService = buildingsService;
 }
 public BuildingsController(IBuildingsService buildingsService, IPlayerService playerService, ILogicProvider logic)
 {
     this.buildingsService = buildingsService;
     this.playerService = playerService;
     this.logic = logic;
 }
Example #12
0
 public BuildingsController(IBuildingsService buildingsService, IStreetsService streetsService)
 {
     this.buildingsService = buildingsService;
     this.streetsService   = streetsService;
 }
Example #13
0
 public EntrancesController(IEntrancesService entrancesService, IBuildingsService buildingsService)
 {
     this.entrancesService = entrancesService;
     this.buildingsService = buildingsService;
 }