public HomeController(IControleService controleService, ILogger <HomeController> logger) { _controleService = controleService; _logger = logger; }
public ControleController(IControleService service) { _service = service; }
public MovimentacaoController(IControleService controleService) => _controleService = controleService;
public MovimentosController(IControleService controleService, IFuncionarioService funcionarioService, IChaveService chaveService) { _controleService = controleService; _funcionarioService = funcionarioService; _chaveService = chaveService; }