/// <inheritdoc /> public Task UpdateAsync(PathWaypointKey key, PathWaypointModel model) { return(WaypointCrudProvider.UpdateAsync(key, model)); }
/// <inheritdoc /> public Task <PathWaypointModel> RetrieveAsync(PathWaypointKey key) { return(WaypointCrudProvider.RetrieveAsync(key)); }
/// <inheritdoc /> public Task <bool> TryDeleteAsync(PathWaypointKey key) { return(WaypointCrudProvider.TryDeleteAsync(key)); }
/// <inheritdoc /> public Task <bool> ContainsAsync(PathWaypointKey key) { return(WaypointCrudProvider.ContainsAsync(key)); }