示例#1
0
 public EventService(EventusPocDbContext dbContext)
 {
     if (dbContext == null)
         throw new ArgumentNullException("dbContext");
     this.dbContext = dbContext;
 }
 public EventController()
 {
     db = new EventusPocDbContext("EventusPocDb");
     this.eventService = new EventService(db);
 }
示例#3
0
 public HomeController()
 {
     dbContext = new EventusPocDbContext("EventusPocDb");
 }