Exemplo n.º 1
0
 public IList<Cargo> PesquisarPorSetorDescricao(Setor setor, string descricao)
 {
     return _cargoRepositorio.PesquisarPorSetorDescricao(setor, descricao);
 }
Exemplo n.º 2
0
 public void Salvar(Setor setor)
 {
     _setorRepositorio.Salvar(setor);
 }
Exemplo n.º 3
0
 public IList<Cargo> PesquisarPorSetor(Setor setor)
 {
     return _cargoRepositorio.PesquisarPorSetor(setor);
 }