BudgetAnalyser.Uwp.ShellController.ShellController C# (CSharp) Method

ShellController() public method

public ShellController ( [ uiContext, [ dashboardService, IPersistApplicationState statePersistenceProvider ) : System
uiContext [
dashboardService [
statePersistenceProvider IPersistApplicationState
return System
        public ShellController([NotNull] UiContext uiContext, [NotNull] IDashboardService dashboardService, IPersistApplicationState statePersistenceProvider)
        {
            if (uiContext == null) throw new ArgumentNullException(nameof(uiContext));
            if (dashboardService == null) throw new ArgumentNullException(nameof(dashboardService));

            this.uiContext = uiContext;
            this.dashboardService = dashboardService;
            this.statePersistence = statePersistenceProvider;
            // this.persistenceOperations = persistenceOperations;
        }