Example #1
0
 public ServicoDeDominioDeEmpresas(IUnitOfWork unitOfWork,
                                   IRepositorioDeConsultaDeEmpresas repositorioDeConsultaDeEmpresas,
                                   NotificationContext notificationContext,
                                   IServicoDeValidacaoDeEmpresas servicoDeValidacaoDeEmpresas)
 {
     this.unitOfWork = unitOfWork;
     this.repositorioDeConsultaDeEmpresas = repositorioDeConsultaDeEmpresas;
     this.notificationContext             = notificationContext;
     this.servicoDeValidacaoDeEmpresas    = servicoDeValidacaoDeEmpresas;
 }
 public ServicoDeValidacaoDeEmpresas(IRepositorioDeConsultaDeEmpresas repositorioDeConsultaDeEmpresas,
                                     NotificationContext notificationContext)
 {
     this.repositorioDeConsultaDeEmpresas = repositorioDeConsultaDeEmpresas;
     this.notificationContext             = notificationContext;
 }