Example #1
0
 public int RegisterCar([FromUri] string License)
 {
     ParkRepo = new ParkRepository();
     return(ParkRepo.GetCarID(License));
 }