public ScopesController(IScopesService scopesService, IAppSettingsService appSettingsService)
 {
     _scopeService       = scopesService;
     _appSettingsService = appSettingsService;
 }
 public CalendarModel(ICalendarService calendarServices, IScopesService scopeSvc)
 {
     _calendarServices = calendarServices;
     _scopeSvc         = scopeSvc;
 }
 public RetrospectModel(IRecordsSearchService searchRecordsService, IScopesService scopesSvc)
 {
     _searchRecordsService = searchRecordsService;
     _scopesSvc            = scopesSvc;
 }
Exemple #4
0
 public SetupModel(IScopesService scopesSvc, IAppSettingsService settingsSvc)
 {
     _scopesSvc   = scopesSvc;
     _settingsSvc = settingsSvc;
 }