Esempio n. 1
0
        public bool DeleteActionLog(Guid id)
        {
            bool isSuccess = true;
            var  actionLog = actionLogRepository.GetById(id);

            try
            {
                actionLogRepository.Delete(actionLog);
                SaveRecord();
            }
            catch
            {
                isSuccess = false;
            }
            return(isSuccess);
        }
Esempio n. 2
0
 public ActionLog Delete(int _id)
 {
     return(_Repository.Delete(_id));
 }