Esempio n. 1
0
 public HomeController(IDABABRepository repository, DABABContext context)
 {
     this.repository = repository;
     this.context    = context;
 }
Esempio n. 2
0
 public MovieController()
 {
     this.db         = new DABABContext();
     this.repository = new DABABRepository(this.db);
 }
Esempio n. 3
0
 public AccountController()
 {
     this.context    = new DABABContext();
     this.repository = new DABABRepository(this.context);
 }