Beispiel #1
0
 public bool MarcarProjetoAvaliado(int?idProjeto)
 {
     projetoDAO = new ProjetoDAOSQL();
     return(projetoDAO.MarcarProjetoAvaliado(idProjeto));
 }
Beispiel #2
0
 public List <DropDownItem> LoadProjetosNaoAvaliadosGerente(int?idGerente)
 {
     projetoDAO = new ProjetoDAOSQL();
     return(projetoDAO.LoadProjetosNaoAvaliadosGerente(idGerente));
 }
Beispiel #3
0
 public List <Projeto> LoadProjetosTerminados(int?idGerente)
 {
     projetoDAO = new ProjetoDAOSQL();
     return(projetoDAO.LoadProjetosTerminados(idGerente));
 }
Beispiel #4
0
 public bool AlterarProjeto(int idProjeto, int?idGerente, string nomeProjeto, string descProjeto, DateTime dataInicio,
                            DateTime dataTermino, string prioridade, string status, List <int?> listaIdCompetencias)
 {
     projetoDAO = new ProjetoDAOSQL();
     return(projetoDAO.AlterarProjeto(idProjeto, idGerente, nomeProjeto, descProjeto, dataInicio, dataTermino, prioridade, status, listaIdCompetencias));
 }
Beispiel #5
0
 public Projeto CarregarProjeto(int idProjeto)
 {
     projetoDAO = new ProjetoDAOSQL();
     return(projetoDAO.CarregarProjeto(idProjeto));
 }
Beispiel #6
0
 public List <DropDownItem> LoadRHProjetoDDL(int idProjeto)
 {
     projetoDAO = new ProjetoDAOSQL();
     return(projetoDAO.LoadRHProjetoDDL(idProjeto));
 }
Beispiel #7
0
 public List <ProjetoUsuarioDTO> LoadRHProjeto(int idProjeto)
 {
     projetoDAO = new ProjetoDAOSQL();
     return(projetoDAO.LoadRHProjeto(idProjeto));
 }
Beispiel #8
0
 public List <Projeto> LoadProjetos(string nome, int?idGerente, string status, string prioridade,
                                    DateTime?dataInicio, DateTime?dataTermino)
 {
     projetoDAO = new ProjetoDAOSQL();
     return(projetoDAO.LoadProjetos(nome, idGerente, status, prioridade, dataInicio, dataTermino));
 }