Ejemplo n.º 1
0
        public ManagerResult <NoteComment> GetNoteCommentById(int id)
        {
            INoteCommentManager business = NoteCommentBusinessFactory.Instance.Create(this.Version);

            return(business.GetNoteCommentById(id));
        }
Ejemplo n.º 2
0
        public ManagerResult <List <NoteComment> > GetNoteCommentsByNoteId(int noteId)
        {
            INoteCommentManager business = NoteCommentBusinessFactory.Instance.Create(this.Version);

            return(business.GetNoteCommentsByNoteId(noteId));
        }
Ejemplo n.º 3
0
        public ManagerResult <NoteComment> AddNoteComment(NoteComment noteComment)
        {
            INoteCommentManager business = NoteCommentBusinessFactory.Instance.Create(this.Version);

            return(business.AddNoteComment(noteComment));
        }