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