示例#1
0
        public bool DeleteImgAsync(int id)
        {
            if (id <= 0)
            {
                throw new ArgumentException("id错误");
            }

            return(_campusRepository.DeleteImgAsync(id));
        }