public static void DadoQueExistaMOSProjetoSASeguir(Table table) { for (int position = 0; position < table.RowCount; position++) { string nome = table.Rows[position][table.Header.ToList()[0]]; string tamanho = table.Rows[position][table.Header.ToList()[1]]; string totalCiclos = table.Rows[position][table.Header.ToList()[2]]; string ritmoTime = table.Rows[position][table.Header.ToList()[3]]; Projeto p = ProjetoFactory.CriarProjetoRitmo(SessionTest, UInt32.Parse(tamanho), nome, true, ushort.Parse(totalCiclos), ushort.Parse(ritmoTime)); p.DtInicioReal = DateTime.Now; p.DtInicioPlan = DateTime.Now; p.Save(); ProjetosDic.Add(nome, p); } }