Exemplo n.º 1
0
 public UnitOfWork(RecipeDBContext recipeDBContext)
 {
     this.recipeDBContext = recipeDBContext ?? throw new ArgumentNullException(nameof(recipeDBContext));
 }
Exemplo n.º 2
0
 public RecipeRepository(RecipeDBContext recipeDBContext)
 {
     this.recipeDBContext = recipeDBContext ?? throw new ArgumentNullException(nameof(recipeDBContext));
 }