using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using EMIS.DataLogic.Repositories;
using EMIS.Entities;
namespace EMIS.DataLogic.SystemDAL
{
public class ProcessWorkfloconfigDAL
{
public WorkfloconfigRepository workfloconfigRepository { get; set; }
public ProcessRelationRepository processRelationRepository { get; set; }
///
/// 获取流程配置表
///
///
public IQueryable GetWorkfloconfigQueryable()
{
return workfloconfigRepository.GetList(x => true);
}
///
/// 流程关联表
///
///
public IQueryable GetProcessRelationQueryable()
{
return processRelationRepository.GetList(x => true);
}
}
}