using DbFirst.BlazorWebApp.Models; namespace DbFirst.BlazorWebApp.Services { public interface IMassDataApiClient { Task GetCountAsync(); Task> GetAllAsync(int? skip, int? take); Task> UpsertAsync(MassDataWriteDto dto); Task GetByCustomerNameAsync(string customerName); } }