using LocalEndpoint; using Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Endpoint { public interface IRecipesService { public List PopularRecipes(); public Recipe GetRecipe(RecipeInfo info); public IAccountRecipes GetRecipesOf(Account account); } }