コード例 #1
0
 public MoviesController()
 {
     _mapper  = AutomapperWebConfiguration.Configure().CreateMapper();
     _context = new ApplicationDbContext();
 }
コード例 #2
0
 public NotificationsController(IUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
     _mapper     = AutomapperWebConfiguration.Configure().CreateMapper();
 }