/// <summary> /// Inseri novo(a) FormaPagamento na lista /// </summary> /// <returns></returns> public override bool Inserir() { try { bool ok = formaPagamento.Inserir(); if (ok) { lista.Add(formaPagamento.Control.ID); Indice = lista.Count - 1; } return(ok); } catch (Exception ex) { throw ex; } }