public VisitorsIpsService(INewsSystemData data)
 {
     _data = data;
 }
Exemple #2
0
 public ThemeService(INewsSystemData data)
 {
     this.Data = data;
 }
Exemple #3
0
 public AnswersService(INewsSystemData data)
 {
     this.Data = data;
 }
Exemple #4
0
 public TagsService(INewsSystemData data)
 {
     this.Data = data;
 }
 public QuestionsService(INewsSystemData data, IAnswersService answerService)
 {
     this.Data = data;
     this.AnswerService = answerService;
 }
Exemple #6
0
 public CategoryService(INewsSystemData data)
 {
     this.Data = data;
 }