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