Пример #1
0
        public PersonPageController(UIPersonPage view, IClientDataService dataService, Network.Network network)
        {
            this.View        = view;
            this.DataService = dataService;
            this.Network     = network;
            Topic            = dataService.CreateTopicSubscription();

            Network.CityClient.AddSubscriber(this);
        }
Пример #2
0
        public NeighPageController(UINeighPage view, IClientDataService dataService)
        {
            this.View        = view;
            this.DataService = dataService;
            this.Topic       = dataService.CreateTopicSubscription();

            ControllerUtils.BindController <RatingSummaryController>(this.View.MayorRatingBox1);
            ControllerUtils.BindController <RatingSummaryController>(this.View.MayorRatingBox2);
        }
Пример #3
0
 public LotPageController(UILotPage view, IClientDataService dataService)
 {
     this.View        = view;
     this.DataService = dataService;
     this.Topic       = dataService.CreateTopicSubscription();
 }