示例#1
0
 public GeneralLogService(
     ILogger logger,
     ITopicLogRepository topicLogsRepo,
     IPostLogRepository postLogRepository)
 {
     this._logger         = logger;
     this._topicsLogsRepo = topicLogsRepo;
     this._postsLogsRepo  = postLogRepository;
 }
示例#2
0
 public PostLogService(IPostLogRepository postLogRepo)
 {
     this._postLogRepo = postLogRepo;
 }