Пример #1
0
 public async Task <IHttpActionResult> FindShortestRoute([FromBody] ICostValue cost, IPoint start, IPoint end)
 {
     throw new NotImplementedException();
 }
Пример #2
0
 public RouteCost(ITimeCostValue timeCost, ICostValue cost)
 {
     TimeCost = timeCost ?? throw new ArgumentNullException(nameof(timeCost));
     Cost     = cost ?? throw new ArgumentNullException(nameof(cost));
 }