/// <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(); }
/// <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; }