public bool UpdateActionLog(ActionLog actionLog) { bool isSuccess = true; try { actionLogRepository.Update(actionLog); this.SaveRecord(); } catch { isSuccess = false; } return(isSuccess); }
public void Update(ActionLog _model) { _Repository.Update(_model); }