コード例 #1
0
 public ScopesController(IScopesService scopesService, IAppSettingsService appSettingsService)
 {
     _scopeService       = scopesService;
     _appSettingsService = appSettingsService;
 }
コード例 #2
0
 public CalendarModel(ICalendarService calendarServices, IScopesService scopeSvc)
 {
     _calendarServices = calendarServices;
     _scopeSvc         = scopeSvc;
 }
コード例 #3
0
 public RetrospectModel(IRecordsSearchService searchRecordsService, IScopesService scopesSvc)
 {
     _searchRecordsService = searchRecordsService;
     _scopesSvc            = scopesSvc;
 }
コード例 #4
0
ファイル: Setup.cshtml.cs プロジェクト: Aleksey-M/RiseDiary
 public SetupModel(IScopesService scopesSvc, IAppSettingsService settingsSvc)
 {
     _scopesSvc   = scopesSvc;
     _settingsSvc = settingsSvc;
 }