示例#1
0
        public static async Task <ArenaPostResult> AddPersonNote(int personId, String note)
        {
            if (!IsReady())
            {
                await StartSession();
            }

            PersonRepository repository = new PersonRepository(_arenaAPI);

            return(await repository.AddNote(personId, new PersonNote { IsPrivate = false, SecurityTemplateId = 0, Note = note }));
        }