Example #1
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;
 }
 public AbstractApiBusinessEntityAddressRequestModelValidator(IBusinessEntityAddressRepository businessEntityAddressRepository)
 {
     this.businessEntityAddressRepository = businessEntityAddressRepository;
 }
 public ApiBusinessEntityAddressRequestModelValidator(IBusinessEntityAddressRepository businessEntityAddressRepository)
     : base(businessEntityAddressRepository)
 {
 }