using System.Collections.Generic; using System.Threading.Tasks; using MapsModels.DsModels; using MapsDb.Models; namespace MapsDb.Interfaces { public interface IBusStopDs { Task> GetIndexListAsync(PaginationDsM pagination); Task CreateAsync(BusStopEditDsM busStop); Task UpdateAsync(BusStopEditDsM busStop, int id); Task DeleteAsync(int Id); } }