Example #1
0
        public ToysTabViewModel(IToysService toysService)
        {
            _toysService  = toysService;
            Toys          = new ObservableCollection <ToyEntityViewModel>();
            _internalList = new List <ToyEntityViewModel>();

            ReloadToysAsync()
            .Wait();
        }
Example #2
0
 public ManagerPageViewModel(IToysService toysService,
                             ISalesService salesService,
                             ICustomersService customersService,
                             IPreOrdersService preOrdersService,
                             ISalesStatisticsPrinter printer
                             )
 {
     ToysContext      = new ToysTabViewModel(toysService);
     SalesContext     = new SalesTabViewModel(salesService, printer);
     CustomersContext = new CustomersTabViewModel(customersService);
     PreOrdersContext = new PreOrdersTabViewModel(preOrdersService);
 }
Example #3
0
 public AdminService(IToysCategoriesService toysCategoriesService,
                     IToysService toysService,
                     IPreOrdersService preOrdersService,
                     ICustomersService customersService,
                     ISalesService salesService
                     )
 {
     ToysCategoriesService = toysCategoriesService;
     ToysService           = toysService;
     PreOrdersService      = preOrdersService;
     CustomersService      = customersService;
     SalesService          = salesService;
 }
 public AdminPageViewModel(IToysService toysService,
                           IToysCategoriesService categoriesService,
                           ISalesService salesService,
                           ICustomersService customersService,
                           IPreOrdersService preOrdersService,
                           ISalesStatisticsPrinter salesStatisticsPrinter
                           )
 {
     ToysContext           = new ToysTabViewModel(toysService);
     ToysCategoriesContext = new ToysCategoriesTabViewModel(categoriesService);
     SalesContext          = new SalesTabViewModel(salesService, salesStatisticsPrinter);
     CustomersContext      = new CustomersTabViewModel(customersService);
     PreOrdersContext      = new PreOrdersTabViewModel(preOrdersService);
 }