예제 #1
0
        public void DeleteTaskLog(int logId)
        {
            var log = taskLogRepository.FindByID(logId);

            taskLogRepository.Remove(log);
            taskLogRepository.Save();
        }