Example #1
0
 public PostLinkService(
     ILogger <IPostLinkRepository> logger,
     IPostLinkRepository postLinkRepository,
     IApiPostLinkRequestModelValidator postLinkModelValidator,
     IBOLPostLinkMapper bolpostLinkMapper,
     IDALPostLinkMapper dalpostLinkMapper)
     : base(logger,
            postLinkRepository,
            postLinkModelValidator,
            bolpostLinkMapper,
            dalpostLinkMapper)
 {
 }
Example #2
0
 public AbstractPostLinkService(
     ILogger logger,
     IPostLinkRepository postLinkRepository,
     IApiPostLinkRequestModelValidator postLinkModelValidator,
     IBOLPostLinkMapper bolPostLinkMapper,
     IDALPostLinkMapper dalPostLinkMapper)
     : base()
 {
     this.PostLinkRepository     = postLinkRepository;
     this.PostLinkModelValidator = postLinkModelValidator;
     this.BolPostLinkMapper      = bolPostLinkMapper;
     this.DalPostLinkMapper      = dalPostLinkMapper;
     this.logger = logger;
 }