public ActionResult UpdateInterest(UpdateInterestRequest updateInterestRequest) { if (updateInterestRequest == null) { return(BadRequest(new { error = "users must have an interest name" })); } var updatedInterest = _interestRepository.UpdateInterest(updateInterestRequest.Id, updateInterestRequest.UserId, updateInterestRequest.InterestName); return(Ok(updatedInterest)); }
public ActionResult UpdateInterest(int userId, UpdateInterestRequest updateInterestRequest) { if (updateInterestRequest == null) { return(BadRequest(new { error = "We Need More Interest Infomation" })); } var updatedUser = _interestRepository.UpdateInterest( userId, updateInterestRequest.Name); return(Ok()); }
public ActionResult updateInterest(Interests newInterest) { var updatedInterestObject = InterestRepository.UpdateInterest(newInterest); return(Created("api/updatedInterest", updatedInterestObject)); }