Пример #1
0
        public bool UpdateActionLog(ActionLog actionLog)
        {
            bool isSuccess = true;

            try
            {
                actionLogRepository.Update(actionLog);
                this.SaveRecord();
            }
            catch
            {
                isSuccess = false;
            }
            return(isSuccess);
        }
Пример #2
0
 public void Update(ActionLog _model)
 {
     _Repository.Update(_model);
 }