public async Task <IActionResult> AddNoteToGroup(AddNoteToGroupBindingModel addNoteToGroupBindingModel) { var response = await _noteService.AddNoteToGroup(addNoteToGroupBindingModel); if (response.ErrorOccurred) { return(BadRequest(response)); } return(Ok(response)); }