Beispiel #1
0
 public void Delete(Reward reward)
 {
     _hateContext.Remove(reward);
     _hateContext.SaveChanges();
 }
Beispiel #2
0
 public void Delete(Special special)
 {
     _hateContext.Remove(special);
     _hateContext.SaveChanges();
 }
 public void Delete(Scenario scenario)
 {
     _hateContext.Remove(scenario);
     _hateContext.SaveChanges();
 }