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