BudgetAnalyser.Statement.StatementViewModel.StatementViewModel C# (CSharp) Метод

StatementViewModel() публичный Метод

public StatementViewModel ( [ uiContext, [ applicationDatabaseService ) : System
uiContext [
applicationDatabaseService [
Результат System
        public StatementViewModel([NotNull] IUiContext uiContext, [NotNull] IApplicationDatabaseService applicationDatabaseService)
        {
            if (uiContext == null)
            {
                throw new ArgumentNullException(nameof(uiContext));
            }

            if (applicationDatabaseService == null)
            {
                throw new ArgumentNullException(nameof(applicationDatabaseService));
            }

            this.doNotUseSortByDate = true;
            this.uiContext = uiContext;
            this.applicationDatabaseService = applicationDatabaseService;
        }