Пример #1
0
 public PersonService(
     ILogger <IPersonRepository> logger,
     IPersonRepository personRepository,
     IApiPersonRequestModelValidator personModelValidator,
     IBOLPersonMapper bolpersonMapper,
     IDALPersonMapper dalpersonMapper,
     IBOLBusinessEntityContactMapper bolBusinessEntityContactMapper,
     IDALBusinessEntityContactMapper dalBusinessEntityContactMapper,
     IBOLEmailAddressMapper bolEmailAddressMapper,
     IDALEmailAddressMapper dalEmailAddressMapper,
     IBOLPasswordMapper bolPasswordMapper,
     IDALPasswordMapper dalPasswordMapper,
     IBOLPersonPhoneMapper bolPersonPhoneMapper,
     IDALPersonPhoneMapper dalPersonPhoneMapper)
     : base(logger,
            personRepository,
            personModelValidator,
            bolpersonMapper,
            dalpersonMapper,
            bolBusinessEntityContactMapper,
            dalBusinessEntityContactMapper,
            bolEmailAddressMapper,
            dalEmailAddressMapper,
            bolPasswordMapper,
            dalPasswordMapper,
            bolPersonPhoneMapper,
            dalPersonPhoneMapper)
 {
 }
Пример #2
0
 public AbstractPersonService(
     ILogger logger,
     IPersonRepository personRepository,
     IApiPersonRequestModelValidator personModelValidator,
     IBOLPersonMapper bolPersonMapper,
     IDALPersonMapper dalPersonMapper,
     IBOLBusinessEntityContactMapper bolBusinessEntityContactMapper,
     IDALBusinessEntityContactMapper dalBusinessEntityContactMapper,
     IBOLEmailAddressMapper bolEmailAddressMapper,
     IDALEmailAddressMapper dalEmailAddressMapper,
     IBOLPasswordMapper bolPasswordMapper,
     IDALPasswordMapper dalPasswordMapper,
     IBOLPersonPhoneMapper bolPersonPhoneMapper,
     IDALPersonPhoneMapper dalPersonPhoneMapper)
     : base()
 {
     this.personRepository               = personRepository;
     this.personModelValidator           = personModelValidator;
     this.bolPersonMapper                = bolPersonMapper;
     this.dalPersonMapper                = dalPersonMapper;
     this.bolBusinessEntityContactMapper = bolBusinessEntityContactMapper;
     this.dalBusinessEntityContactMapper = dalBusinessEntityContactMapper;
     this.bolEmailAddressMapper          = bolEmailAddressMapper;
     this.dalEmailAddressMapper          = dalEmailAddressMapper;
     this.bolPasswordMapper              = bolPasswordMapper;
     this.dalPasswordMapper              = dalPasswordMapper;
     this.bolPersonPhoneMapper           = bolPersonPhoneMapper;
     this.dalPersonPhoneMapper           = dalPersonPhoneMapper;
     this.logger = logger;
 }
Пример #3
0
 public PersonService(
     ILogger <IPersonRepository> logger,
     IPersonRepository personRepository,
     IApiPersonRequestModelValidator personModelValidator,
     IBOLPersonMapper bolpersonMapper,
     IDALPersonMapper dalpersonMapper)
     : base(logger,
            personRepository,
            personModelValidator,
            bolpersonMapper,
            dalpersonMapper)
 {
 }
Пример #4
0
 public AbstractPersonService(
     ILogger logger,
     IPersonRepository personRepository,
     IApiPersonRequestModelValidator personModelValidator,
     IBOLPersonMapper bolPersonMapper,
     IDALPersonMapper dalPersonMapper)
     : base()
 {
     this.PersonRepository     = personRepository;
     this.PersonModelValidator = personModelValidator;
     this.BolPersonMapper      = bolPersonMapper;
     this.DalPersonMapper      = dalPersonMapper;
     this.logger = logger;
 }