Esempio n. 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)
 {
 }
Esempio n. 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;
 }
Esempio n. 3
0
 public BusinessEntityAddressService(
     ILogger <IBusinessEntityAddressRepository> logger,
     IBusinessEntityAddressRepository businessEntityAddressRepository,
     IApiBusinessEntityAddressRequestModelValidator businessEntityAddressModelValidator,
     IBOLBusinessEntityAddressMapper bolbusinessEntityAddressMapper,
     IDALBusinessEntityAddressMapper dalbusinessEntityAddressMapper)
     : base(logger,
            businessEntityAddressRepository,
            businessEntityAddressModelValidator,
            bolbusinessEntityAddressMapper,
            dalbusinessEntityAddressMapper)
 {
 }
 public AbstractBusinessEntityAddressService(
     ILogger logger,
     IBusinessEntityAddressRepository businessEntityAddressRepository,
     IApiBusinessEntityAddressRequestModelValidator businessEntityAddressModelValidator,
     IBOLBusinessEntityAddressMapper bolBusinessEntityAddressMapper,
     IDALBusinessEntityAddressMapper dalBusinessEntityAddressMapper)
     : base()
 {
     this.businessEntityAddressRepository     = businessEntityAddressRepository;
     this.businessEntityAddressModelValidator = businessEntityAddressModelValidator;
     this.bolBusinessEntityAddressMapper      = bolBusinessEntityAddressMapper;
     this.dalBusinessEntityAddressMapper      = dalBusinessEntityAddressMapper;
     this.logger = logger;
 }
Esempio n. 5
0
        public AddressService(
            ILogger<IAddressRepository> logger,
            IAddressRepository addressRepository,
            IApiAddressRequestModelValidator addressModelValidator,
            IBOLAddressMapper boladdressMapper,
            IDALAddressMapper daladdressMapper,
            IBOLBusinessEntityAddressMapper bolBusinessEntityAddressMapper,
            IDALBusinessEntityAddressMapper dalBusinessEntityAddressMapper)
            : base(logger,
			       addressRepository,
			       addressModelValidator,
			       boladdressMapper,
			       daladdressMapper,
			       bolBusinessEntityAddressMapper,
			       dalBusinessEntityAddressMapper)
        {
        }
 public AbstractAddressTypeService(
     ILogger logger,
     IAddressTypeRepository addressTypeRepository,
     IApiAddressTypeRequestModelValidator addressTypeModelValidator,
     IBOLAddressTypeMapper bolAddressTypeMapper,
     IDALAddressTypeMapper dalAddressTypeMapper,
     IBOLBusinessEntityAddressMapper bolBusinessEntityAddressMapper,
     IDALBusinessEntityAddressMapper dalBusinessEntityAddressMapper)
     : base()
 {
     this.addressTypeRepository          = addressTypeRepository;
     this.addressTypeModelValidator      = addressTypeModelValidator;
     this.bolAddressTypeMapper           = bolAddressTypeMapper;
     this.dalAddressTypeMapper           = dalAddressTypeMapper;
     this.bolBusinessEntityAddressMapper = bolBusinessEntityAddressMapper;
     this.dalBusinessEntityAddressMapper = dalBusinessEntityAddressMapper;
     this.logger = logger;
 }