Пример #1
0
 public string getAllVehicleDetailsForBrand(int customerId, string brandName)
 {
     SQLVehicleRepository vehRepo = new SQLVehicleRepository();
     string reqdInfo = vehRepo.getAllVehicleDetails(customerId, brandName);
     return reqdInfo;
 }
Пример #2
0
 public string getAllVehicleDetails(int customerId)
 {
     SQLVehicleRepository vehRepo = new SQLVehicleRepository();
     string reqdInfo = vehRepo.getAllVehicleDetails(customerId);
     return reqdInfo;
 }