SoundBoard.AutoUpdate.ViewModels.UpdatePropopsalViewModel.UpdatePropopsalViewModel C# (CSharp) Method

UpdatePropopsalViewModel() public method

public UpdatePropopsalViewModel ( IViewModelInteraction viewModelInteraction, UpdateManager updateManager, IProductUpdate productUpdate ) : SoundBoard.AutoUpdate.Helpers
viewModelInteraction IViewModelInteraction
updateManager UpdateManager
productUpdate IProductUpdate
return SoundBoard.AutoUpdate.Helpers
        public UpdatePropopsalViewModel(IViewModelInteraction viewModelInteraction ,UpdateManager updateManager, IProductUpdate productUpdate)
        {
            if (productUpdate == null)
                throw new ProductUpdateFailedException(new NullReferenceException("ProductUpdate!"));

            _viewModelInteraction = viewModelInteraction;
            _productUpdate = productUpdate;
            _updateManager = updateManager;
            _userInterfaceFactory = new UpdateUserInterfaceFactory(_updateManager);


            ShowUpdateInfo();
            
        }