Ejemplo n.º 1
0
 public MainWorkspacePresenter(PnrpManager pnrp)
     : base()
 {
     this.Clouds = new CloudPresenter(pnrp);
     this.RegistrationManager = new RegistrationListPresenter(pnrp);
     this.Registration        = new RegistrationPresenter(pnrp);
 }
 public RegistrationListPresenter(PnrpManager service)
 {
     _service = service;
 }
Ejemplo n.º 3
0
 public RegistrationPresenter(PnrpManager service)
     : base()
 {
     _service = service;
 }
Ejemplo n.º 4
0
 public CloudPresenter(PnrpManager pnrpService)
 {
     _pnrpService = pnrpService;
     _pnrpService.CurrentScope = PnrpScope.All;
 }