Epiworx.Business.Note.NewNote C# (CSharp) Method

NewNote() static private method

static private NewNote ( ) : Note
return Note
        internal static Note NewNote()
        {
            return Csla.DataPortal.Create<Note>();
        }

Usage Example

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

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

            return(note);
        }
All Usage Examples Of Epiworx.Business.Note::NewNote