public void DeleteServing(Guid id) { servingRepository.Delete(id); }
public ActionResult Delete(int id) { _servingRepository.Delete(_servingRepository.FindById(id)); return(Ok(_servingRepository.Save())); }