public async Task <ActionResult> DeleteCar(int carId) => await Exec(async operation =>
 {
     VerifyUser(UserRole.Client);
     await clientProfileService.DeleteCar(operation, carId);
 });