17 lines
448 B
C#
17 lines
448 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace BLL
|
|||
|
{
|
|||
|
public static class JDGLWBSService
|
|||
|
{
|
|||
|
public static List<Model.JDGL_WBS> GetWBSsByProjectId(string projectId,string parentId)
|
|||
|
{
|
|||
|
return (from x in Funs.DB.JDGL_WBS where x.ParentId == parentId && x.ProjectId == projectId orderby x.PathCode select x).ToList();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|