Exemplo n.º 1
0
 public CadastraEmpreendimentoStrategy(IMapper mapper,
                                       IDemarcacaoUnitOfWork unitOfWork,
                                       IEmpreendimentoRepository empreendimentoRepository)
 {
     Mapper     = mapper;
     UnitOfWork = unitOfWork;
     EmpreendimentoRepository = empreendimentoRepository;
 }
Exemplo n.º 2
0
 public RetornaEmpreendimentoStrategy(IMapper mapper,
                                      IEmpreendimentoRepository empreendimentoRepository)
 {
     Mapper = mapper;
     EmpreendimentoRepository = empreendimentoRepository;
 }
Exemplo n.º 3
0
 public EmpreendimentoAppService(IEmpreendimentoRepository empreendimentoRepository, MessageQueue messageQueue)
     : base(messageQueue)
 {
     this.empreendimentoRepository = empreendimentoRepository;
 }