Пример #1
0
 public LoggingRest(DatabaseCtx dbCtx)
 {
     DatabaseCtx = dbCtx;
 }
 public UserPreferencesController(DatabaseCtx context)
 {
     this.database = context;
 }
Пример #3
0
 public SourceRest(DatabaseCtx dctx, ISettingsService settingsService)
 {
     DatabaseContext = dctx;
     SettingsService = settingsService;
 }
Пример #4
0
 public RssService(DatabaseCtx context)
 {
     this.context = context;
 }
Пример #5
0
 public UserController(DatabaseCtx context)
 {
     this.database    = context;
     this.userService = new UserService(context);
 }
Пример #6
0
 public AnalyzeHub(DatabaseCtx db, RestAnalyzeService service)
 {
     RestAnalyzeService = service;
     DatabaseCtx        = db;
 }
Пример #7
0
 public UserService(DatabaseCtx context)
 {
     this.context = context;
 }
Пример #8
0
 public RestAnalyzeService(DatabaseCtx databaseCtx)
 {
     DatabaseCtx = databaseCtx;
 }
Пример #9
0
 public NewsController(DatabaseCtx context)
 {
     this.database = context;
 }