Exemplo n.º 1
0
 public PersonRefService(
     ILogger <IPersonRefRepository> logger,
     IPersonRefRepository personRefRepository,
     IApiPersonRefRequestModelValidator personRefModelValidator,
     IBOLPersonRefMapper bolpersonRefMapper,
     IDALPersonRefMapper dalpersonRefMapper)
     : base(logger,
            personRefRepository,
            personRefModelValidator,
            bolpersonRefMapper,
            dalpersonRefMapper)
 {
 }
Exemplo n.º 2
0
		public AbstractPersonRefService(
			ILogger logger,
			IPersonRefRepository personRefRepository,
			IApiPersonRefRequestModelValidator personRefModelValidator,
			IBOLPersonRefMapper bolPersonRefMapper,
			IDALPersonRefMapper dalPersonRefMapper)
			: base()
		{
			this.PersonRefRepository = personRefRepository;
			this.PersonRefModelValidator = personRefModelValidator;
			this.BolPersonRefMapper = bolPersonRefMapper;
			this.DalPersonRefMapper = dalPersonRefMapper;
			this.logger = logger;
		}