// Insert a fresh one
func (s *ChocolateStorage) Insert(c model.Chocolate) string {
	s.db.Create(&c)
	return c.GetID()
}