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