package org.octopus.internal.services import org.octopus.internal.common.enums.EFoodGroup import org.octopus.internal.common.enums.EFoodNutrient import org.octopus.internal.common.models.Food interface FoodService { fun getById(id: Long): Food fun getAll(): MutableList fun deleteById(id: Long) fun deleteAll() fun findByNutrient(nutrient: EFoodNutrient): MutableList fun findByGroup(group: EFoodGroup): MutableList }