예제 #1
0
 private VehicleService()
 {
     db = new VehicleContext();
 }
예제 #2
0
 public VehicleService()
 {
     _context = new VehicleContext();
 }
예제 #3
0
 public VehicleService(VehicleContext context, IMapper mapper)
 {
     Context = context;
     Mapper  = mapper;
 }