public BuyStockCommand(BuyViewModel buyViewModel, IBuyStockService buyStockService, IAccountStroe accountStroe) { _buyViewModel = buyViewModel; _buyStockService = buyStockService; _accountStroe = accountStroe; }
public AssetStore(IAccountStroe accountStroe) { _accountStroe = accountStroe; _accountStroe.StateChanged += OnStateChanged; }
public Authenticator(IAuthenticationService authenticationService, IAccountStroe accountStroe) { _authenticationService = authenticationService; _accountStroe = accountStroe; }