Esempio n. 1
0
 public PostTypeService(
     ILogger <IPostTypeRepository> logger,
     IPostTypeRepository postTypeRepository,
     IApiPostTypeRequestModelValidator postTypeModelValidator,
     IBOLPostTypeMapper bolpostTypeMapper,
     IDALPostTypeMapper dalpostTypeMapper)
     : base(logger,
            postTypeRepository,
            postTypeModelValidator,
            bolpostTypeMapper,
            dalpostTypeMapper)
 {
 }
 public AbstractPostTypeService(
     ILogger logger,
     IPostTypeRepository postTypeRepository,
     IApiPostTypeRequestModelValidator postTypeModelValidator,
     IBOLPostTypeMapper bolPostTypeMapper,
     IDALPostTypeMapper dalPostTypeMapper)
     : base()
 {
     this.PostTypeRepository     = postTypeRepository;
     this.PostTypeModelValidator = postTypeModelValidator;
     this.BolPostTypeMapper      = bolPostTypeMapper;
     this.DalPostTypeMapper      = dalPostTypeMapper;
     this.logger = logger;
 }
Esempio n. 3
0
        public PostTypeService(
            ILogger <IPostTypeService> logger,
            MediatR.IMediator mediator,
            IPostTypeRepository postTypeRepository,
            IApiPostTypeServerRequestModelValidator postTypeModelValidator,
            IDALPostTypeMapper dalPostTypeMapper,
            IDALPostMapper dalPostMapper)
            : base()
        {
            this.PostTypeRepository     = postTypeRepository;
            this.PostTypeModelValidator = postTypeModelValidator;
            this.DalPostTypeMapper      = dalPostTypeMapper;
            this.DalPostMapper          = dalPostMapper;
            this.logger = logger;

            this.mediator = mediator;
        }