30 lines
628 B
C#
30 lines
628 B
C#
|
|
using dccdc.DAL;
|
|||
|
|
using dccdc.Models;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace dccdc.BLL
|
|||
|
|
{
|
|||
|
|
public class ERPBuMenBll
|
|||
|
|
{
|
|||
|
|
public ERPBuMenDal Dal = new ERPBuMenDal();
|
|||
|
|
public List<ERPBuMenModel> GetAllList(string key)
|
|||
|
|
{
|
|||
|
|
return Dal.GetAllList(key);
|
|||
|
|
}
|
|||
|
|
public List<ERPBuMenModel> GetListdir()
|
|||
|
|
{
|
|||
|
|
return Dal.GetListdir();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
public List<string> GetAllChildren(string ksid)
|
|||
|
|
{
|
|||
|
|
return Dal.GetAllChildren(ksid);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|