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