Example #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;
 }