using blazor_lab.Components; using blazor_lab.Models; namespace blazor_lab.Services { public interface IDataService { Task Add(ItemModel itemModel); Task Count(); Task> List(int currentPage, int pageSize); Task GetById(int id); Task Update(int id, ItemModel model); Task Delete(int id); Task> GetRecipes(); } }