IBusStopDs.cs 352 Bytes
using System.Collections.Generic;
using System.Threading.Tasks;
using MapsModels.DsModels;
using MapsDb.Models;
namespace MapsDb.Interfeces
{
    public interface IBusStopDs
    {
        Task<IList<BusStopListDs>> GetAllBusStopAsync();
        Task SaveBusStopAsync(BusStop busStop);
        Task<BusStopDetailsDs> FindOneDetailsAsync(int Id);
    }
}