public Dictionary<string, string> buscaTiposProjeto() { Dictionary<string, string> lista = new Dictionary<string, string>(); ProjetoDA pda = new ProjetoDA(); lista = pda.buscaTiposProjeto(); return lista; }
public List<Projeto> buscaProjetos(string email) { List<Projeto> lista = new List<Projeto>(); ProjetoDA pda = new ProjetoDA(); lista = pda.buscaProjetos(email); return lista; }
public Projeto buscaProjeto(string titulo, int codigo) { Projeto p = new Projeto(); ProjetoDA pda = new ProjetoDA(); p = pda.buscaProjeto(titulo, codigo); return p; }
public List<Projeto> teste() { List<string> lista = new List<string>(); ProjetoDA pda = new ProjetoDA(); var bind = pda.buscaProjetos(""); return bind; }
public bool excluiProjeto(int id) { ProjetoDA pda = new ProjetoDA(); bool excluiu = pda.excluiProjeto(id); return excluiu; }
public bool editaProjeto(Projeto p) { ProjetoDA pda = new ProjetoDA(); bool editou = pda.editaProjeto(p); return editou; }
public int contaProjetosEmpresa(int idEmpresa, string where) { ProjetoDA pda = new ProjetoDA(); int qnt = pda.contaProjetosEmpresa(idEmpresa, where); return qnt; }
public bool cadastraProjeto(Projeto p) { ProjetoDA pda = new ProjetoDA(); bool cadastrou = pda.cadastraProjeto(p); return cadastrou; }
public string buscaNomeTipoProjeto(int id) { ProjetoDA pda = new ProjetoDA(); string item = pda.buscaNomeTipoProjeto(id); return item; }