public ContactTypeService( ILogger <IContactTypeRepository> logger, IContactTypeRepository contactTypeRepository, IApiContactTypeRequestModelValidator contactTypeModelValidator, IBOLContactTypeMapper bolcontactTypeMapper, IDALContactTypeMapper dalcontactTypeMapper, IBOLBusinessEntityContactMapper bolBusinessEntityContactMapper, IDALBusinessEntityContactMapper dalBusinessEntityContactMapper) : base(logger, contactTypeRepository, contactTypeModelValidator, bolcontactTypeMapper, dalcontactTypeMapper, bolBusinessEntityContactMapper, dalBusinessEntityContactMapper) { }
public AbstractContactTypeService( ILogger logger, IContactTypeRepository contactTypeRepository, IApiContactTypeRequestModelValidator contactTypeModelValidator, IBOLContactTypeMapper bolContactTypeMapper, IDALContactTypeMapper dalContactTypeMapper, IBOLBusinessEntityContactMapper bolBusinessEntityContactMapper, IDALBusinessEntityContactMapper dalBusinessEntityContactMapper) : base() { this.ContactTypeRepository = contactTypeRepository; this.ContactTypeModelValidator = contactTypeModelValidator; this.BolContactTypeMapper = bolContactTypeMapper; this.DalContactTypeMapper = dalContactTypeMapper; this.BolBusinessEntityContactMapper = bolBusinessEntityContactMapper; this.DalBusinessEntityContactMapper = dalBusinessEntityContactMapper; this.logger = logger; }