Пример #1
0
 public VisitorsIpsService(INewsSystemData data)
 {
     _data = data;
 }
Пример #2
0
 public ThemeService(INewsSystemData data)
 {
     this.Data = data;
 }
Пример #3
0
 public AnswersService(INewsSystemData data)
 {
     this.Data = data;
 }
Пример #4
0
 public TagsService(INewsSystemData data)
 {
     this.Data = data;
 }
Пример #5
0
 public QuestionsService(INewsSystemData data, IAnswersService answerService)
 {
     this.Data = data;
     this.AnswerService = answerService;
 }
Пример #6
0
 public CategoryService(INewsSystemData data)
 {
     this.Data = data;
 }