Example #1
0
        public void MadeRecipeBefore(int recipeId, int userId, DateTime madeData)
        {
            DbConnect dbConnect = new DbConnect();

            dbConnect.POSTUserMadeInDB(recipeId, userId, madeData);
        }
Example #2
0
        public void MadeRecipeNow(int recipeId, int userId)
        {
            DbConnect dbConnect = new DbConnect();

            dbConnect.POSTUserMadeInDB(recipeId, userId, DateTime.Now);
        }