コード例 #1
0
 /// <inheritdoc />
 public Task UpdateAsync(PathWaypointKey key, PathWaypointModel model)
 {
     return(WaypointCrudProvider.UpdateAsync(key, model));
 }
コード例 #2
0
 /// <inheritdoc />
 public Task <PathWaypointModel> RetrieveAsync(PathWaypointKey key)
 {
     return(WaypointCrudProvider.RetrieveAsync(key));
 }
コード例 #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));
 }