Exemplo n.º 1
0
 public string getModelYearsWithCustomization(int modelId)
 {
     SQLVehicleRepository vehRepo = new SQLVehicleRepository();
     string reqdInfo = vehRepo.getModelYearsWithCustomization(modelId);
     return reqdInfo;
 }
Exemplo n.º 2
0
 public string getAllVehicleDetailsForBrand(int customerId, string brandName)
 {
     SQLVehicleRepository vehRepo = new SQLVehicleRepository();
     string reqdInfo = vehRepo.getAllVehicleDetails(customerId, brandName);
     return reqdInfo;
 }
Exemplo n.º 3
0
 public string getAllVehicleDetailsWithBrand(int brandId)
 {
     SQLVehicleRepository vehRepo = new SQLVehicleRepository();
     return vehRepo.getAllVehicleDetailsWithBrand(brandId);
 }
Exemplo n.º 4
0
 public string getAllVehicleDetails(int customerId)
 {
     SQLVehicleRepository vehRepo = new SQLVehicleRepository();
     string reqdInfo = vehRepo.getAllVehicleDetails(customerId);
     return reqdInfo;
 }