using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FangYar.IDAL { public interface ToTreeIDAL { //List GetTreeNodeModelToList(string strwhere); List GetTreeNodeModelToList(string treeid, string treepid, string name, string table, string strwhere); List GetNodeTree(string treeid, string treepid, string name, string table, string strwhere); List GetTree(string treeid, string treepid, string name, string table, string strwhere, List treelist); List GetTree2(string treeid, string treepid, string name, string table, string strwhere, List treelist); List GetTree3(string treeid, string treepid, string name, string table, string strwhere, List treelist); } }