Ejemplo n.º 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)
 {
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 3
0
 public EmailAddressService(
     ILogger <IEmailAddressRepository> logger,
     IEmailAddressRepository emailAddressRepository,
     IApiEmailAddressRequestModelValidator emailAddressModelValidator,
     IBOLEmailAddressMapper bolemailAddressMapper,
     IDALEmailAddressMapper dalemailAddressMapper)
     : base(logger,
            emailAddressRepository,
            emailAddressModelValidator,
            bolemailAddressMapper,
            dalemailAddressMapper)
 {
 }
Ejemplo n.º 4
0
 public AbstractEmailAddressService(
     ILogger logger,
     IEmailAddressRepository emailAddressRepository,
     IApiEmailAddressRequestModelValidator emailAddressModelValidator,
     IBOLEmailAddressMapper bolEmailAddressMapper,
     IDALEmailAddressMapper dalEmailAddressMapper)
     : base()
 {
     this.EmailAddressRepository     = emailAddressRepository;
     this.EmailAddressModelValidator = emailAddressModelValidator;
     this.BolEmailAddressMapper      = bolEmailAddressMapper;
     this.DalEmailAddressMapper      = dalEmailAddressMapper;
     this.logger = logger;
 }