示例#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
 public SetupModel(IScopesService scopesSvc, IAppSettingsService settingsSvc)
 {
     _scopesSvc   = scopesSvc;
     _settingsSvc = settingsSvc;
 }