public async Task <IActionResult> DeleteRecommendation(int id)
        {
            var recommendation = await _repo.GetRecommendation(id);

            _repo.Delete(recommendation);

            if (await _repo.SaveAll())
            {
                return(NoContent());
            }

            return(BadRequest("Failed to Delete recommendation"));
        }
 public void Delete(int id)
 {
     _weddingRepository.Delete(id);
 }