Ejemplo n.º 1
0
 public TributarioController(ITributarioRepository tributarioRepository, IImovelRepository imovelRepository, IEmpresaRepository empresaRepository, IHostingEnvironment hostingEnvironment)
 {
     this.tributarioRepository = tributarioRepository;
     this.imovelRepository     = imovelRepository;
     this.empresaRepository    = empresaRepository;
     this.hostingEnvironment   = hostingEnvironment;
 }
Ejemplo n.º 2
0
 public EmpresaController(IEmpresaRepository empresaRepository, ITributarioRepository tributarioRepository, IHostingEnvironment hostingEnvironment)
 {
     this.empresaRepository    = empresaRepository;
     this.tributarioRepository = tributarioRepository;
     this.hostingEnvironment   = hostingEnvironment;
 }
Ejemplo n.º 3
0
 public ImovelController(IImovelRepository imovelRepository, IHostingEnvironment hostingEnvironment, ITributarioRepository tributarioRepository)
 {
     _imovelRepository         = imovelRepository;
     this.hostingEnvironment   = hostingEnvironment;
     this.tributarioRepository = tributarioRepository;
 }