public Resposta CriarProjeto(string nome, string descricao) { if (string.IsNullOrEmpty(nome)) { return(Resposta.DadosEmBranco); } if (!(_projetoRepository.Exists(nome))) { _projetoRepository.Add(nome, descricao); return(Resposta.Ok); } return(Resposta.Existe); }