コード例 #1
0
        public async Task <IActionResult> AddNoteToGroup(AddNoteToGroupBindingModel addNoteToGroupBindingModel)
        {
            var response = await _noteService.AddNoteToGroup(addNoteToGroupBindingModel);

            if (response.ErrorOccurred)
            {
                return(BadRequest(response));
            }

            return(Ok(response));
        }