示例#1
0
 /// <summary author="Jared Greenfield" created="2019/02/21">
 /// RecipeManager is an implementation of the IRecipeManager interface to interact with the database.
 /// </summary>
 public RecipeManager()
 {
     _recipeAccessor = new RecipeAccessor();
 }
示例#2
0
 /// <summary author="Jared Greenfield" created="2019/02/21">
 /// RecipeManager is an implementation of the IRecipeManager interface to interact with the mock accessor
 /// </summary>
 public RecipeManager(RecipeAccessorMock mock)
 {
     _recipeAccessor = mock;
 }