Exemplo n.º 1
0
 public DespesasController(IManterDespesasService despesasService, IImovelService imovelService,
                           IMapper mapper)
 {
     _despesasService = despesasService;
     _imovelService   = imovelService;
     _mapper          = mapper;
 }
Exemplo n.º 2
0
 public AnuncioController(IAnuncioService anuncioService, IImovelService imovelService,
                          IPessoaService pessoaService, IMapper mapper)
 {
     _anuncioService = anuncioService;
     _imovelService  = imovelService;
     _pessoaService  = pessoaService;
     _mapper         = mapper;
 }
 public ImoveisController(IImovelRepository imovelRepository,
                          IImovelService imovelService,
                          IMapper mapper,
                          INotifier notifier) : base(notifier)
 {
     _imovelRepository = imovelRepository;
     _imovelService    = imovelService;
     _mapper           = mapper;
 }
Exemplo n.º 4
0
 public ImovelController(IImovelService Imovelservice)
 {
     _imovelService = Imovelservice;
 }
Exemplo n.º 5
0
 public ImoveisController(IHttpContextAccessor iHttpContextAccessor, ILogSistemaService iLogSistemaService, IImovelService ImovelService)
     : base(iHttpContextAccessor, iLogSistemaService)
 {
     _ImovelService      = ImovelService;
     _iLogSistemaService = iLogSistemaService;
 }
Exemplo n.º 6
0
 public ImovelAppService(IImovelService imovelService, IUnitOfWork uow) : base(uow)
 {
 }
Exemplo n.º 7
0
 public ImovelController(IImovelService imovelService, IMapper mapper)
 {
     _imovelService = imovelService;
     _mapper        = mapper;
 }