Esempio n. 1
0
 public CommentsService(
     ILogger <ICommentsRepository> logger,
     ICommentsRepository commentsRepository,
     IApiCommentsRequestModelValidator commentsModelValidator,
     IBOLCommentsMapper bolcommentsMapper,
     IDALCommentsMapper dalcommentsMapper
     )
     : base(logger,
            commentsRepository,
            commentsModelValidator,
            bolcommentsMapper,
            dalcommentsMapper)
 {
 }
Esempio n. 2
0
 public AbstractCommentsService(
     ILogger logger,
     ICommentsRepository commentsRepository,
     IApiCommentsRequestModelValidator commentsModelValidator,
     IBOLCommentsMapper bolCommentsMapper,
     IDALCommentsMapper dalCommentsMapper)
     : base()
 {
     this.commentsRepository     = commentsRepository;
     this.commentsModelValidator = commentsModelValidator;
     this.bolCommentsMapper      = bolCommentsMapper;
     this.dalCommentsMapper      = dalCommentsMapper;
     this.logger = logger;
 }