Blame view

src/MapsDb/Interfaces/IBusStopDs.cs 409 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
      {
d199d4ff   Administrator   change details to...
9
          Task<IList<BusStopEditDsM>> GetIndexListAsync();
3a805d0a   Administrator   fix id = null in ...
10
          Task SaveAsync(BusStopEditDsM busStop, int? id = null);
b9b3b8dd   Administrator   add deteils and c...
11
          Task<BusStopDetailsDsM> FindOneDetailsAsync(int Id);
94ffda14   Yarik   Delete action
12
          Task<int> DeleteAsync(int? Id);
32912d0b   Administrator   first commit
13
14
      }
  }