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) { }
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; }