/// <summary> /// Adds Note to DB /// </summary> /// <param name="UpdatedNote">Returned Note</param> /// <param name="LeadID">LeadID</param> /// <param name="CaseID">CaseID</param> public void SetDiaryNotes(DiaryNote UpdatedNote, int LeadID, int CaseID) { UpdatedNote.Set(LeadID, CaseID); }
/// <summary> /// Gets the default values to render the View on the UI /// </summary> public void GetDiaryNotesDefaults() { Notes = new DiaryNote(); Notes.Get(); }