public void Exclui(Int32 id_tf_investimento_RF) { tf_investimento_RF temp = (tf_investimento_RF)db.tf_investimento_RF.Where(inv => inv.id == id_tf_investimento_RF).FirstOrDefault(); temp.is_ativo = false; db.SaveChanges(); }
public void Altera(tf_investimento_RF otf_investimento_RF) { tf_investimento_RF temp = (tf_investimento_RF)db.tf_investimento_RF.Where(inv => inv.id == otf_investimento_RF.id).FirstOrDefault(); temp.is_ativo = otf_investimento_RF.is_ativo; temp.nome = otf_investimento_RF.nome; db.SaveChanges(); }
public void Cria(tf_investimento_RF otf_investimento_RF) { db.tf_investimento_RF.Add(otf_investimento_RF); db.SaveChanges(); }