public TributarioController(ITributarioRepository tributarioRepository, IImovelRepository imovelRepository, IEmpresaRepository empresaRepository, IHostingEnvironment hostingEnvironment)
 {
     this.tributarioRepository = tributarioRepository;
     this.imovelRepository     = imovelRepository;
     this.empresaRepository    = empresaRepository;
     this.hostingEnvironment   = hostingEnvironment;
 }
예제 #2
0
 public ImovelService(IImovelRepository imovelRepository, IImovel_ProprietarioRepository imovel_ProprietarioRepository, IEnderecoRepository enderecoRepository, IImovelDetalheBaseValorRepository imovelDetalheBaseValorRepository, IProprietarioRepository proprietarioRepository)
 {
     _imovelRepository = imovelRepository;
     _imovel_ProprietarioRepository    = imovel_ProprietarioRepository;
     _enderecoRepository               = enderecoRepository;
     _imovelDetalheBaseValorRepository = imovelDetalheBaseValorRepository;
     _proprietarioRepository           = proprietarioRepository;
 }
 public ImoveisController(IImovelRepository imovelRepository,
                          IImovelService imovelService,
                          IMapper mapper,
                          INotifier notifier) : base(notifier)
 {
     _imovelRepository = imovelRepository;
     _imovelService    = imovelService;
     _mapper           = mapper;
 }
예제 #4
0
 public ContaController(IContaRepository repository, IImovelRepository repositoryImovel)
 {
     this.repository       = repository;
     this.repositoryImovel = repositoryImovel;
 }
예제 #5
0
 public ImovelController(IImovelRepository repositoryImovel)
 {
     this.repositoryImovel = repositoryImovel;
 }
예제 #6
0
 public ImovelController(IImovelRepository imovelRepository)
 {
     this.imovelRepository = imovelRepository;
 }
예제 #7
0
 public ImovelService(IImovelRepository imovelRepository)
 {
     _imovelRepository = imovelRepository;
 }
예제 #8
0
 public ImovelController(IImovelRepository _repo)
 {
     repo = _repo;
 }
예제 #9
0
 public ContaLuzController(IContaLuzRepository contaLuzRepository, IImovelRepository imovelRepository)
 {
     this.contaLuzRepository = contaLuzRepository;
     this.imovelRepository   = imovelRepository;
 }
예제 #10
0
 public ImovelBusinessImpl(IImovelRepository repository)
 {
     _repository = repository;
     _converter  = new ImovelConverter();
 }
예제 #11
0
 public ImovelController(IImovelRepository imovelRepository, IHostingEnvironment hostingEnvironment, ITributarioRepository tributarioRepository)
 {
     _imovelRepository         = imovelRepository;
     this.hostingEnvironment   = hostingEnvironment;
     this.tributarioRepository = tributarioRepository;
 }
 public ImovelController(IImovelRepository repository)
 {
     this.repository = repository;
 }
예제 #13
0
 public ContaLuzController(IContaRepository ContaRepository, IImovelRepository imovel)
 {
     this.ContaRepository  = ContaRepository;
     this.imovelRepository = imovel;
 }
예제 #14
0
 public ImovelService(IImovelRepository imovelRepository, IEnderecoRepository enderecoRepository, INotifier notifier) : base(notifier)
 {
     _imovelRepository   = imovelRepository;
     _enderecoRepository = enderecoRepository;
 }
예제 #15
0
 public ContaRepository(IContaRepository repository, IImovelRepository imovelRepository)
 {
     this.repository       = repository;
     this.imovelRepository = imovelRepository;
 }
예제 #16
0
 public ImovelController()
 {
     _imovelRepository = new ImovelRepository();
 }