public FundsViewModel(IFundsService fundsService)
        {
            this.fundsService = fundsService;

            Load();

            CalculateCommand = new RelayCommand(p => Calculate(p), p => CanCalculate);

            IsBusy = true;
        }
예제 #2
0
 public FundsController(
     IFundsService fundsService
     )
 {
     _fundsService = fundsService;
 }
예제 #3
0
 public FundsManager(MenuActionService actionService, IFundsService <T> fundsService)
 {
     _actionService = actionService;
     _fundsService  = fundsService;
 }
예제 #4
0
 public FundsView(IFundsService fundsService)
 {
     this.fundsService = fundsService;
 }
예제 #5
0
 public FundsController(IFundsService fundsService, IMapper mapper)
 {
     _fundsService = fundsService;
     _mapper       = mapper;
 }
예제 #6
0
        public FundViewModel(IFundsService fundsService)
        {
            this.fundsService = fundsService;

            Load();
        }
예제 #7
0
 public ValueFundController(IValueFundService valueFundService, IMapper mapper, IFundsService fundService)
 {
     _valueFundService = valueFundService;
     _mapper           = mapper;
     _fundService      = fundService;
 }