public HomeController(IOwnerVehicleRepo owerVehicleRepo, IAppService appService)
 {
     _ownerVehicleRepo = owerVehicleRepo;
     _appService       = appService;
 }
 public VehicleController(IOwnerVehicleRepo vehicleRepo, IAppService appService)
 {
     _ownerVehicleRepo = vehicleRepo;
     _appService       = appService;
 }