Commit f56c27ec735a68ccdd7d06a276d6313eae3e9692

Authored by Administrator
1 parent abec55bf

add id to IBusStop Save mathod

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/MapsDb/Interfaces/IBusStopDs.cs
@@ -7,7 +7,7 @@ namespace MapsDb.Interfaces @@ -7,7 +7,7 @@ namespace MapsDb.Interfaces
7 public interface IBusStopDs 7 public interface IBusStopDs
8 { 8 {
9 Task<IList<BusStopListDsM>> GetIndexListAsync(); 9 Task<IList<BusStopListDsM>> GetIndexListAsync();
10 - Task SaveAsync(BusStopEditDsM busStop); 10 + Task SaveAsync(BusStopEditDsM busStop, int? id);
11 Task<BusStopDetailsDsM> FindOneDetailsAsync(int Id); 11 Task<BusStopDetailsDsM> FindOneDetailsAsync(int Id);
12 Task<int> DeleteAsync(int? Id); 12 Task<int> DeleteAsync(int? Id);
13 } 13 }