public void deleteFAQ(int id) { FAQ FAQ = FAQRepository.GetById(id); FAQRepository.Delete(FAQ); SaveChange(); }
public void DeleteFAQ(int faqCatID) { _faqRepository.Delete(_faqRepository.GetById(faqCatID)); }