public CallContext CronProcessHistorySave(CronProcessHistory entity, CallContext resultContext) { resultContext.securitySettings = ETEMEnums.SecuritySettings.KeyTypeSave; CallContext resContext = new CronProcessHistoryBL().EntitySave <CronProcessHistory>(entity, resultContext); return(resContext); }
public List <CronProcessHistory> GetAllCronProcessHistory(string sortExpression, string sortDirection) { List <CronProcessHistory> list = new CronProcessHistoryBL().GetAll(sortExpression, sortDirection); return(list); }