protected BaseController(ICarsSearchData data, User userProfile)
     : this(data)
 {
     this.UserProfile = userProfile;
 }
 public CarsController(ICarsSearchData data) 
     : base(data)
 {
 }
 protected BaseController(ICarsSearchData data)
 {
     this.Data = data;
 }