public HomeController(IQuotesService quotesService, IAuthorsService authorsService,
                       IModesService modesService)
 {
     this.quotesService  = quotesService;
     this.authorsService = authorsService;
     this.modesService   = modesService;
 }
 public AuthorsController(ICategoriesService categoriesService,
                          IArtistService artistService, IQuotesService quotesService) : base(categoriesService, artistService)
 {
     this.categoriesService = categoriesService;
     this.artistService     = artistService;
     this.quotesService     = quotesService;
 }
Exemplo n.º 3
0
 public QuotesViewModel(IQuotesService quotesService)
 {
     //_navigation = navigation;
     QuotesLists    = new ObservableCollection <QuotesModel>();
     _quotesService = quotesService;
     Loader         = true;
     LoadData();
 }
Exemplo n.º 4
0
 public QuoteCommand(IQuotesService quotesService)
 {
     this.quotesService = quotesService;
     Name        = "quote";
     Description = "gives you a bit of Shakespear";
     HelpOption("-? | -h | --help");
     OnExecute((Func <int>)Execute);
 }
Exemplo n.º 5
0
        public QuotesServerApplication(EndPointSettings endPoint, IQuotesService quotesService)
        {
            _endPointSettings = endPoint
                                ?? throw new ArgumentNullException(nameof(endPoint));

            _quotesService = quotesService
                             ?? throw new ArgumentNullException(nameof(quotesService));
        }
Exemplo n.º 6
0
 public QuotesPresenter(IQuotesView view, IQuotesService quotesService)
 {
     _view          = view;
     _quotesService = quotesService;
     _quotesService.QuotedGenerated += (sender, qoute) =>
     {
         _view.SetQuote(qoute);
         _view.Busy();
     };
 }
Exemplo n.º 7
0
 public AlertsController(
     IAlertsService alertService,
     IQuotesService quotesService,
     AlertsHub alertsHub
     )
 {
     this.alertsService = alertService;
     this.quotesService = quotesService;
     this.alertsHub     = alertsHub;
 }
Exemplo n.º 8
0
 public MarketController(IQuotesService quotesService)
 {
     _quotesService = quotesService;
 }
 public SpreadSheetViewModel(IQuotesService quotes)
 {
     this.quotes = quotes;
 }
Exemplo n.º 10
0
 public QuotesController(IQuotesService quotes)
 {
     this.quotes = quotes;
 }
Exemplo n.º 11
0
 public QuotesViewModel(IQuotesService quotesService)
 {
     _quotesService = quotesService;
 }
Exemplo n.º 12
0
 public QuotesController(IMapper mapper, IQuotesService service)
 {
     _mapper  = mapper;
     _service = service;
 }
Exemplo n.º 13
0
 public QuotesModule(IQuotesService quotesService)
 {
     this.quotesService = quotesService;
 }
Exemplo n.º 14
0
 public SpreadSheetViewModel(IQuotesService quotes)
 {
     this.quotes = quotes;
 }
Exemplo n.º 15
0
 public HomeController(IArticleService articlesService, ICategoryService categoryService, IQuotesService quotesService)
 {
     this.articlesService = articlesService;
     this.categoryService = categoryService;
     this.quotesService   = quotesService;
 }
Exemplo n.º 16
0
 public GetQuotesMiddleware(IActionDispatcher actionDispatcher, IQuotesService service)
 {
     _actionDispatcher = actionDispatcher;
     _service          = service;
 }
Exemplo n.º 17
0
 public QuotesController(IQuotesService _quotesService)
 {
     this.quotesService = _quotesService;
 }
Exemplo n.º 18
0
 public QuotesController(IMapper mapper, IQuotesService quotesService)
 {
     _mapper        = mapper;
     _quotesService = quotesService;
 }
Exemplo n.º 19
0
 public HomeController(IQuotesService quotes, ICacheService cache)
 {
     this.quotes = quotes;
     this.cache = cache;
 }
Exemplo n.º 20
0
 public QuotesController(IQuotesService service)
 {
     this.service = service;
 }
Exemplo n.º 21
0
 public QuotesController(IQuotesService QuoteService)
 {
     _quotesService = QuoteService;
 }
Exemplo n.º 22
0
 public DocumentViewModel(IQuotesService quotes)
 {
     this.quotes = quotes;
 }