Beispiel #1
0
 public BusinessEntityService(
     ILogger <IBusinessEntityRepository> logger,
     IBusinessEntityRepository businessEntityRepository,
     IApiBusinessEntityRequestModelValidator businessEntityModelValidator,
     IBOLBusinessEntityMapper bolbusinessEntityMapper,
     IDALBusinessEntityMapper dalbusinessEntityMapper,
     IBOLBusinessEntityAddressMapper bolBusinessEntityAddressMapper,
     IDALBusinessEntityAddressMapper dalBusinessEntityAddressMapper,
     IBOLBusinessEntityContactMapper bolBusinessEntityContactMapper,
     IDALBusinessEntityContactMapper dalBusinessEntityContactMapper,
     IBOLPersonMapper bolPersonMapper,
     IDALPersonMapper dalPersonMapper)
     : base(logger,
            businessEntityRepository,
            businessEntityModelValidator,
            bolbusinessEntityMapper,
            dalbusinessEntityMapper,
            bolBusinessEntityAddressMapper,
            dalBusinessEntityAddressMapper,
            bolBusinessEntityContactMapper,
            dalBusinessEntityContactMapper,
            bolPersonMapper,
            dalPersonMapper)
 {
 }
Beispiel #2
0
 public AbstractBusinessEntityService(
     ILogger logger,
     IBusinessEntityRepository businessEntityRepository,
     IApiBusinessEntityRequestModelValidator businessEntityModelValidator,
     IBOLBusinessEntityMapper bolBusinessEntityMapper,
     IDALBusinessEntityMapper dalBusinessEntityMapper,
     IBOLBusinessEntityAddressMapper bolBusinessEntityAddressMapper,
     IDALBusinessEntityAddressMapper dalBusinessEntityAddressMapper,
     IBOLBusinessEntityContactMapper bolBusinessEntityContactMapper,
     IDALBusinessEntityContactMapper dalBusinessEntityContactMapper,
     IBOLPersonMapper bolPersonMapper,
     IDALPersonMapper dalPersonMapper)
     : base()
 {
     this.BusinessEntityRepository       = businessEntityRepository;
     this.BusinessEntityModelValidator   = businessEntityModelValidator;
     this.BolBusinessEntityMapper        = bolBusinessEntityMapper;
     this.DalBusinessEntityMapper        = dalBusinessEntityMapper;
     this.BolBusinessEntityAddressMapper = bolBusinessEntityAddressMapper;
     this.DalBusinessEntityAddressMapper = dalBusinessEntityAddressMapper;
     this.BolBusinessEntityContactMapper = bolBusinessEntityContactMapper;
     this.DalBusinessEntityContactMapper = dalBusinessEntityContactMapper;
     this.BolPersonMapper = bolPersonMapper;
     this.DalPersonMapper = dalPersonMapper;
     this.logger          = logger;
 }