Exemple #1
0
        public void Test_Create()
        {
            NoteBLL bll = new NoteBLL(_unit);

            Note note = new Note {
                Comment   = "Test comment",
                Create    = DateTime.Now,
                ShareId   = 1585,
                Type      = NoteType.General.ToString(),
                CreatedBy = "2b658482-6a38-4ed3-b356-77fe9b1569f1"
            };

            bll.Create(note);
        }