ComplianceServer/oldcode/BLL/Yun/YUN_UPGRADEVERSION_BL.cs

15 lines
296 B
C#

using System.Data;
using WX.CRM.DAL.Yun;
using WX.CRM.IBLL.Yun;
namespace WX.CRM.BLL.Yun
{
public class YUN_UPGRADEVERSION_BL : IYUN_UPGRADEVERSION
{
public DataTable YunVersionGet()
{
return new YUN_UPGRADEVERSION_DAL().YunVersionGet();
}
}
}