Exemplo n.º 1
0
 public OnderwijsRepository(IOnderwijsContext context)
 {
     _iOnderwijsContext = context;
 }
Exemplo n.º 2
0
 public OnderwijsRepository()
 {
     _iOnderwijsContext = new OnderwijsSQLContext();
 }
Exemplo n.º 3
0
 public void Init()
 {
     context        = new OnderwijsMemoryContext();
     onderwijsLogic = new OnderwijsLogic(context);
 }
Exemplo n.º 4
0
 public OnderwijsLogic(IOnderwijsContext context)
 {
     _onderwijsRepository = new OnderwijsRepository(context);
 }
Exemplo n.º 5
0
 public BlokeigenaarLogic(IOnderwijsContext context)
 {
     OnderwijsRepos = new OnderwijsRepository(context);
 }