예제 #1
0
 public string Delete(Beer item)
 {
     Beers.DeleteOne(b => b.id == item.id);
     return(item.id);
 }