Ejemplo n.º 1
0
 public FuncionariosController(PontoSimplesContext context, FuncionarioService funcionarioService, SetorService setorService, HorarioService horarioService)
 {
     //_context = context;
     _funcionarioService = funcionarioService;
     _setorService       = setorService;
     _horarioService     = horarioService;
 }
Ejemplo n.º 2
0
 public HorarioService(PontoSimplesContext context)
 {
     _context = context;
 }
 public RelatoriosController(FuncionarioService funcionarioService, PontoSimplesContext context, PontoService pontoService)
 {
     _funcionarioService = funcionarioService;
     _context            = context;
     _pontoService       = pontoService;
 }
        //public HorariosController(PontoSimplesContext context)
        //{
        //    _context = context;
        //}

        public HorariosController(PontoSimplesContext context, HorarioService horarioService)
        {
            _context        = context;
            _horarioService = horarioService;
        }
 public FuncionarioService(PontoSimplesContext context)
 {
     _context = context;
 }
Ejemplo n.º 6
0
 public SetoresController(PontoSimplesContext context, SetorService setorService)
 {
     _context      = context;
     _setorService = setorService;
 }
Ejemplo n.º 7
0
 public SetorService(PontoSimplesContext context)
 {
     _context = context;
 }