예제 #1
0
파일: NewsService.cs 프로젝트: Ethen/Guoche
        public static bool RemoveNews(int ID)
        {
            NewsRepository mr = new NewsRepository();

            return(mr.DeleteNew(ID) > 1);
        }