Example #1
0
        public ManagerResult <bool> AddNoteAndContents(Note note, List <NoteContent> noteContents)
        {
            INoteManager business = NoteBusinessFactory.Instance.Create(this.Version);

            return(business.AddNoteAndContents(note, noteContents));
        }