コード例 #1
0
 public UserController(
     IRecentService recentService,
     IShareClassService service)
 {
     this.recentService = recentService;
     this.service       = service;
 }
コード例 #2
0
 public void OpenFile(StorageFile file, IRecentService recent)
 {
     DatabaseFile = file;
     OnPropertyChanged("Name");
     OnPropertyChanged("IsFileSelected");
     OnPropertyChanged("DatabaseFile");
     AddToRecentList(file, recent);
 }
コード例 #3
0
ファイル: ReportsController.cs プロジェクト: atk0dev/DataGate
 public ReportsController(
     IRecentService recentService,
     IReportsService service,
     ITimeSeriesRepository entityRepository)
 {
     this.recentService = recentService;
     this.service       = service;
     this.repository    = entityRepository;
 }
コード例 #4
0
 public AgreementsController(
     IRecentService recentService,
     IAgreementsService service,
     SharedLocalizationService sharedLocalizer)
 {
     this.recentService   = recentService;
     this.service         = service;
     this.sharedLocalizer = sharedLocalizer;
 }
コード例 #5
0
 public FundDetailsController(
     IRecentService recentService,
     IEntityDetailsService service,
     IFundService fundService,
     SharedLocalizationService sharedLocalizer)
 {
     this.recentService   = recentService;
     this.service         = service;
     this.fundService     = fundService;
     this.sharedLocalizer = sharedLocalizer;
 }
コード例 #6
0
 public SubFundShareClassesController(
     IRecentService recentService,
     IEntityService service,
     ISubFundService subFundService,
     SharedLocalizationService sharedLocalizer)
 {
     this.recentService   = recentService;
     this.service         = service;
     this.subFundService  = subFundService;
     this.sharedLocalizer = sharedLocalizer;
 }
コード例 #7
0
 public ShareClassStorageController(
     IRecentService recentService,
     IShareClassStorageService service,
     IShareClassRepository repository,
     SharedLocalizationService sharedLocalizer)
 {
     this.recentService   = recentService;
     this.service         = service;
     this.repository      = repository;
     this.sharedLocalizer = sharedLocalizer;
 }
コード例 #8
0
 public ShareClassDetailsController(
     IRecentService recentService,
     IEntityDetailsService service,
     IShareClassService shareClassService,
     SharedLocalizationService sharedLocalizer)
 {
     this.recentService     = recentService;
     this.service           = service;
     this.shareClassService = shareClassService;
     this.sharedLocalizer   = sharedLocalizer;
 }
コード例 #9
0
 public FundStorageController(
     IHubNotificationHelper notificationHelper,
     IRecentService recentService,
     IFundStorageService fundService,
     IFundSelectListService fundServiceSelect,
     SharedLocalizationService sharedLocalizer)
 {
     this.notificationHelper = notificationHelper;
     this.recentService      = recentService;
     this.service            = fundService;
     this.serviceSelect      = fundServiceSelect;
     this.sharedLocalizer    = sharedLocalizer;
 }
コード例 #10
0
 public FundStorageController(
     IHubContext <NotificationHub> hubContext,
     INotificationService notificationService,
     IRecentService recentService,
     IFundStorageService fundService,
     IFundSelectListService fundServiceSelect,
     SharedLocalizationService sharedLocalizer)
 {
     this.hubContext          = hubContext;
     this.notificationService = notificationService;
     this.recentService       = recentService;
     this.service             = fundService;
     this.serviceSelect       = fundServiceSelect;
     this.sharedLocalizer     = sharedLocalizer;
 }
コード例 #11
0
 private void AddToRecentList(StorageFile file, IRecentService recent)
 {
     recent.Add(file, file.DisplayName);
 }
コード例 #12
0
 public MainVm10(IDatabaseService database, IRecentService recent)
 {
     _database = database;
     _recent   = recent;
 }