Beispiel #1
0
 public AulaController(IUnitOfWorkAule repo, IUnitOfWorkCorsi repo1)
 {
     aulaRepository  = repo;
     corsiRepository = repo1;
 }
Beispiel #2
0
 public CorsoApiController(IUnitOfWorkCorsi repo)
 {
     repository = repo;
 }
Beispiel #3
0
 public StudenteController(IUnitOfWorkStudenti s, IUnitOfWorkCorsi c)
 {
     repositoryStudenti = s;
     repositoryCorsi    = c;
 }