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