예제 #1
0
파일: Startup.cs 프로젝트: broots/Auctions
 public void Configuration(IAppBuilder app)
 {
     app.MapSignalR();
     ConfigureAuth(app);
     MappingProfile.Configure();
 }
예제 #2
0
 public MoviesController()
 {
     _context = new ApplicationDbContext();
     _mapper  = MappingProfile.Configure().CreateMapper();
 }
예제 #3
0
 public CustomersController()
 {
     _context = new ApplicationDbContext();
     _imapper = MappingProfile.Configure().CreateMapper();
 }