NewNote() static private method

static private NewNote ( ) : Note
return Note
Example #1
0
        public static Note NoteNew(int sourceId, SourceType sourceType)
        {
            var note = Note.NewNote();

            note.SourceId     = sourceId;
            note.SourceTypeId = (int)sourceType;

            return(note);
        }
Example #2
0
        public static Note NoteNew()
        {
            var note = Note.NewNote();

            return(note);
        }