public ActionResult DeleteWaterProfile(int id) { var waterProfileEntity = _homeBrewRepository.GetWaterProfile(id, false); if (waterProfileEntity == null) { return(NotFound()); } _homeBrewRepository.DeleteWaterProfile(waterProfileEntity); _homeBrewRepository.Save(); return(NoContent()); }