public TributarioController(ITributarioRepository tributarioRepository, IImovelRepository imovelRepository, IEmpresaRepository empresaRepository, IHostingEnvironment hostingEnvironment) { this.tributarioRepository = tributarioRepository; this.imovelRepository = imovelRepository; this.empresaRepository = empresaRepository; this.hostingEnvironment = hostingEnvironment; }
public EmpresaController(IEmpresaRepository empresaRepository, ITributarioRepository tributarioRepository, IHostingEnvironment hostingEnvironment) { this.empresaRepository = empresaRepository; this.tributarioRepository = tributarioRepository; this.hostingEnvironment = hostingEnvironment; }
public ImovelController(IImovelRepository imovelRepository, IHostingEnvironment hostingEnvironment, ITributarioRepository tributarioRepository) { _imovelRepository = imovelRepository; this.hostingEnvironment = hostingEnvironment; this.tributarioRepository = tributarioRepository; }