Пример #1
0
 public CategorieRepository(ICategorieContext context)
 {
     this.context = context;
 }
Пример #2
0
 public CategorieController(ICategorieContext context)
 {
     this.context = context;
 }
Пример #3
0
 public CategorieAPIController(ICategorieContext categorieContext)
 {
     this.categorieContext = categorieContext;
 }
Пример #4
0
 public CategorieRepository(ICategorieContext context)
 {
     this.context = context ?? throw new NullReferenceException("De CategorieContext is leeg. ");
 }
Пример #5
0
 public void SetUp()
 {
     Context = new CategorieTestContext();
 }