19 lines
422 B
C#
19 lines
422 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace dccdc.BLL
|
|
{
|
|
public class sqwzbxmxBll
|
|
{
|
|
DAL.sqwzbxmxDal Dal = new DAL.sqwzbxmxDal();
|
|
public List<Models.sqwzbxmxModel> GetListByParent(string id)
|
|
{
|
|
//throw new NotImplementedException();
|
|
return Dal.GetListByParent(id);
|
|
}
|
|
}
|
|
}
|