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) { }
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; }
public EmailAddressService( ILogger <IEmailAddressRepository> logger, IEmailAddressRepository emailAddressRepository, IApiEmailAddressRequestModelValidator emailAddressModelValidator, IBOLEmailAddressMapper bolemailAddressMapper, IDALEmailAddressMapper dalemailAddressMapper) : base(logger, emailAddressRepository, emailAddressModelValidator, bolemailAddressMapper, dalemailAddressMapper) { }
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; }