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