public static Guid Insert(Recipe recipe)
        {
            if (recipe == null)
            {
                throw new ArgumentException("Recipe information was not provided");
            }

            var query = SqlQueryGeneration.InsertRecipe(recipe);

            return(_sqlManager.InsertRecipe(query));
        }