Esempio n. 1
0
 public SearchRouteModel SearchRoute(
     string departureCode,
     string destinationCode,
     double weight,
     double height,
     double depth,
     double width,
     int productType)
 {
     return(_service.FindRoute(
                departureCode,
                destinationCode,
                weight,
                height,
                depth,
                width,
                productType));
 }