Esempio n. 1
0
 public InteractionRequest(
     IWindowDisplayService displayService,
     GetDataContextDelegate acquireDataContext,
     ProcessInteractionResultDelegate <TR> processInteractionResult)
     : base(displayService, acquireDataContext)
 {
     _processInteractionResult = processInteractionResult;
 }
Esempio n. 2
0
        public InternalInteractionRequest(IWindowDisplayService displayService, string viewTypeName)
            : base(displayService, null)
        {
            if (string.IsNullOrEmpty(viewTypeName))
            {
                throw new ArgumentNullException("viewTypeName");
            }

            _viewType = viewTypeName;
        }
Esempio n. 3
0
 public NavigationRequest(IWindowDisplayService displayService, GetDataContextDelegate acquireContext)
 {
     _displayService         = displayService;
     _acquireContextDelegate = acquireContext;
 }
Esempio n. 4
0
 public InteractionRequest(IWindowDisplayService displayService)
     : base(displayService, null)
 {
 }