public List <DataModels.CarProfileModel> GetCarProfilesByCarId(int ID)
 {
     return(CarProfileManager.GetCarProfileById(ID));
 }
 public HttpResponseMessage AddCarProfileToDB([FromBody] DataModels.CarProfileModel NewCarProfileModel)
 {
     return(CarProfileManager.AddCarToDB(NewCarProfileModel));
 }
 public List <DataModels.CarProfileModel> GetAllCarProfiles()
 {
     return(CarProfileManager.GetAllCarProfiles());
 }