Ejemplo n.º 1
0
 public PostLinkService(
     ILogger <IPostLinkRepository> logger,
     IPostLinkRepository postLinkRepository,
     IApiPostLinkRequestModelValidator postLinkModelValidator,
     IBOLPostLinkMapper bolpostLinkMapper,
     IDALPostLinkMapper dalpostLinkMapper)
     : base(logger,
            postLinkRepository,
            postLinkModelValidator,
            bolpostLinkMapper,
            dalpostLinkMapper)
 {
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 3
0
        public PostLinkService(
            ILogger <IPostLinkService> logger,
            MediatR.IMediator mediator,
            IPostLinkRepository postLinkRepository,
            IApiPostLinkServerRequestModelValidator postLinkModelValidator,
            IDALPostLinkMapper dalPostLinkMapper)
            : base()
        {
            this.PostLinkRepository     = postLinkRepository;
            this.PostLinkModelValidator = postLinkModelValidator;
            this.DalPostLinkMapper      = dalPostLinkMapper;
            this.logger = logger;

            this.mediator = mediator;
        }
 public ApiPostLinkRequestModelValidator(IPostLinkRepository postLinkRepository)
     : base(postLinkRepository)
 {
 }
 public ApiPostLinkServerRequestModelValidator(IPostLinkRepository postLinkRepository)
 {
     this.PostLinkRepository = postLinkRepository;
 }
Ejemplo n.º 6
0
 public AbstractApiPostLinkRequestModelValidator(IPostLinkRepository postLinkRepository)
 {
     this.postLinkRepository = postLinkRepository;
 }