Commit 3a805d0a7620249ffbcc253a3746cee750ff3296

Authored by Administrator
1 parent f56c27ec

fix id = null in interfase

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 public interface IBusStopDs
8 8 {
9 9 Task<IList<BusStopListDsM>> GetIndexListAsync();
10   - Task SaveAsync(BusStopEditDsM busStop, int? id);
  10 + Task SaveAsync(BusStopEditDsM busStop, int? id = null);
11 11 Task<BusStopDetailsDsM> FindOneDetailsAsync(int Id);
12 12 Task<int> DeleteAsync(int? Id);
13 13 }
... ...