Commit 3a805d0a7620249ffbcc253a3746cee750ff3296
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 +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, int? id); | 10 | + Task SaveAsync(BusStopEditDsM busStop, int? id = null); |
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 | } |