Esempio n. 1
0
 public bool AddTodaysNote_CheckAdding(string todayNoteText)
 {
     return(MySql.AddTodaysNote(testUser, todayNoteText, todaysNoteTestTable));
 }
 /// <summary>
 /// Update the note table with a new active note
 /// </summary>
 /// <param name="user">The User adding the note</param>
 /// <param name="todayNoteText">The note to be added</param>
 /// <param name="todaysNoteTable">Optional* Specify which table to update</param>
 /// <returns>boolean, wether the db executed the command or not</returns>
 public static bool AddTodaysNote(User user, string todayNoteText, string todaysNoteTable = TodaysNoteTable)
 {
     return(MySql.AddTodaysNote(user, todayNoteText, todaysNoteTable));
 }