IBusStopDs.cs
409 Bytes
using System.Collections.Generic;
using System.Threading.Tasks;
using MapsModels.DsModels;
using MapsDb.Models;
namespace MapsDb.Interfaces
{
public interface IBusStopDs
{
Task<IList<BusStopEditDsM>> GetIndexListAsync();
Task SaveAsync(BusStopEditDsM busStop, int? id = null);
Task<BusStopDetailsDsM> FindOneDetailsAsync(int Id);
Task<int> DeleteAsync(int? Id);
}
}