示例#1
0
 /// <inheritdoc />
 public Task UpdateAsync(PathWaypointKey key, PathWaypointModel model)
 {
     return(WaypointCrudProvider.UpdateAsync(key, model));
 }
示例#2
0
 /// <inheritdoc />
 public Task <PathWaypointModel> RetrieveAsync(PathWaypointKey key, bool includeNavigationProperties = false)
 {
     return(WaypointCrudProvider.RetrieveAsync(key, includeNavigationProperties));
 }
示例#3
0
 /// <inheritdoc />
 public Task <bool> TryDeleteAsync(PathWaypointKey key)
 {
     return(WaypointCrudProvider.TryDeleteAsync(key));
 }
示例#4
0
 /// <inheritdoc />
 public Task <bool> ContainsAsync(PathWaypointKey key)
 {
     return(WaypointCrudProvider.ContainsAsync(key));
 }