Blame view

src/MapsDb/Interfaces/IBusStopDs.cs 386 Bytes
32912d0b   Administrator   first commit
1
2
3
4
  using System.Collections.Generic;
  using System.Threading.Tasks;
  using MapsModels.DsModels;
  using MapsDb.Models;
b9b3b8dd   Administrator   add deteils and c...
5
  namespace MapsDb.Interfaces
32912d0b   Administrator   first commit
6
7
8
  {
      public interface IBusStopDs
      {
b9b3b8dd   Administrator   add deteils and c...
9
10
11
          Task<IList<BusStopListDsM>> GetIndexListAsync();
          Task SaveAsync(BusStop busStop);
          Task<BusStopDetailsDsM> FindOneDetailsAsync(int Id);
94ffda14   Yarik   Delete action
12
          Task<int> DeleteAsync(int? Id);
32912d0b   Administrator   first commit
13
14
      }
  }