1
This commit is contained in:
@@ -1,7 +1,9 @@
|
||||
namespace BLL
|
||||
using Model;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
namespace BLL
|
||||
{
|
||||
using Model;
|
||||
using System.Linq;
|
||||
|
||||
public static class PipelineMatService
|
||||
{
|
||||
/// <summary>
|
||||
@@ -13,6 +15,11 @@
|
||||
return Funs.DB.HJGL_PipeLineMat.FirstOrDefault(e => e.PipeLineMatId == pipelineMatId);
|
||||
}
|
||||
|
||||
public static List<Model.HJGL_PipeLineMat> GetPipeLineMatsByPipelineId(string pipelineId)
|
||||
{
|
||||
return Funs.DB.HJGL_PipeLineMat.Where(e => e.PipelineId == pipelineId).ToList();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 增加管线材料
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user