示例#1
0
 public VehicleModelRepository(VehicleContext context, IMapper mapper)
 {
     this.Context         = context;
     this.vehicleModelSet = context.VehicleModels;
     this.mapper          = mapper;
 }
 public VehicleMakeRepository(VehicleContext vehicleContext, IMapper mapper)
 {
     this.vehiclesSet = vehicleContext.VehicleMakes;
     this.mapper      = mapper;
 }