Пример #1
0
 public BuyStockCommand(BuyViewModel buyViewModel, IBuyStockService buyStockService, IAccountStroe accountStroe)
 {
     _buyViewModel    = buyViewModel;
     _buyStockService = buyStockService;
     _accountStroe    = accountStroe;
 }
Пример #2
0
        public AssetStore(IAccountStroe accountStroe)
        {
            _accountStroe = accountStroe;

            _accountStroe.StateChanged += OnStateChanged;
        }
Пример #3
0
 public Authenticator(IAuthenticationService authenticationService, IAccountStroe accountStroe)
 {
     _authenticationService = authenticationService;
     _accountStroe          = accountStroe;
 }