public UnitOfWork(VehicleShopDbContext context)
 {
     this.context = context;
 }
 public VehicleRepository(VehicleShopDbContext context, IMapper vmapper, IUnitOfWork unitOfWork)
 {
     this.Context    = context;
     this.Vmapper    = vmapper;
     this.UnitOfWork = unitOfWork;
 }