public ActionResult <KeywordDTO> UpdateKeyword([FromBody] Keyword keyword) { return(Ok(KeywordDTO.Of(_keywordService.UpdateKeyword(keyword)))); }
public ActionResult <KeywordDTO> DeleteKeyword(int id) { return(Ok(KeywordDTO.Of(_keywordService.DeleteKeyword(id)))); }
public ActionResult <List <KeywordDTO> > GetKeywordsForCompany(int companyId) { return(Ok(_companyService.GetKeywordsForCompany(companyId).Select(x => KeywordDTO.Of(x)).ToList())); }
public ActionResult <List <KeywordDTO> > GetAllKeywords() { return(Ok(_keywordService.GetAllKeywords().Select(keyword => KeywordDTO.Of(keyword)).ToList())); }
public ActionResult <List <KeywordDTO> > GetKeywordsForContact(int contactId) { return(Ok(_contactService.GetKeywordsForContact(contactId).Select(x => KeywordDTO.Of(x)))); }