using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BLL { public static class JDGLWBSDetailService { public static List GetWBSDetailsByWorkPackageId(string workPackageId) { return (from x in Funs.DB.JDGL_WBSDetail where x.WorkPackageId == workPackageId select x).ToList(); } } }