예제 #1
0
 public CityController(CityDataContext db, IMapper map)
 {
     _db     = db;
     _mapper = map;
 }
예제 #2
0
 public AttractionController(CityDataContext db)
 {
     _db = db;
 }
예제 #3
0
 public UnitOfWork(CityDataContext context)
 {
     _context           = context;
     Cities             = new CityRepository(_context);
     TouristAttractions = new TouristAttractionRepository(_context);
 }