Blame view

src/MapsDb/Interfaces/IBusStopDs.cs 352 Bytes
32912d0b   Administrator   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
  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);
      }
  }