Ejemplo n.º 1
0
 public void Configuration(IAppBuilder app)
 {
     app.MapSignalR();
     ConfigureAuth(app);
     MappingProfile.Configure();
 }
Ejemplo n.º 2
0
 public MoviesController()
 {
     _context = new ApplicationDbContext();
     _mapper  = MappingProfile.Configure().CreateMapper();
 }
Ejemplo n.º 3
0
 public CustomersController()
 {
     _context = new ApplicationDbContext();
     _imapper = MappingProfile.Configure().CreateMapper();
 }