public Drink GetDrinkById(int drinkId) { return(_drinkDal.Get(d => d.DrinkId == drinkId)); }
public Drink Get(int id) { return(_drink.Get(id)); }