public DataTable GetNewsTagsAll() { NewsTagsDAO _newstagsDAO = new NewsTagsDAO(); return(_newstagsDAO.GetNewsTagsAll()); }
public NewsTags GetNewsTagsById(int Id) { NewsTagsDAO _newstagsDAO = new NewsTagsDAO(); return(_newstagsDAO.GetNewsTagsById(Id)); }
public DataTable GetNewsTagsByNews(int _newsID) { NewsTagsDAO _newstagsDAO = new NewsTagsDAO(); return(_newstagsDAO.GetNewsTagsByNews(_newsID)); }
public void UpdateNewsTags(NewsTags _newsTags) { NewsTagsDAO _newstagsDAO = new NewsTagsDAO(); _newstagsDAO.UpdateNewsTags(_newsTags); }
public void DeleteNewsTagsNewsID(int Id) { NewsTagsDAO _newstagsDAO = new NewsTagsDAO(); _newstagsDAO.DeleteNewsTagsNewsID(Id); }
public void CreateNewsTags(NewsTags _newsTags) { NewsTagsDAO _newstagsDAO = new NewsTagsDAO(); _newstagsDAO.CreateNewsTags(_newsTags); }
public string GetNews(int _tagsID) { NewsTagsDAO _newstagsDAO = new NewsTagsDAO(); return(_newstagsDAO.GetNews(_tagsID)); }
public string GetTags(int _newsGroupID) { NewsTagsDAO _newstagsDAO = new NewsTagsDAO(); return(_newstagsDAO.GetTags(_newsGroupID)); }
public bool CheckExitTags(int _tagsID, int _newsGroupID) { NewsTagsDAO _newstagsDAO = new NewsTagsDAO(); return(_newstagsDAO.CheckExitTags(_tagsID, _newsGroupID)); }
public NewsTags GetNewsTags(int _tagsID, int _newsGroupID) { NewsTagsDAO _newstagsDAO = new NewsTagsDAO(); return(_newstagsDAO.GetNewsTags(_tagsID, _newsGroupID)); }