public void DeleteEntities(HealthUpContext context) { // apagar Lista inscricoes context.Inscricoes.RemoveRange(Inscreve); // apagar planos treino context.PlanosTreino.RemoveRange(PlanoTreino); // apagar cota Cota cota = context.Cota.SingleOrDefault(p => p.NumSocio == NumCC); context.Cota.Remove(cota); context.SaveChanges(); }
public Socio(Pessoa p) : base() { NumCC = p.NumCC; Cotas = new Cota(NumCC); }