SGGL_SHJ/SGGL/BLL/PHTGL/ContractCompile/AttachUrl19Service.cs

41 lines
1.3 KiB
C#

using System.Linq;
namespace BLL
{
public static class AttachUrl19Service
{
public static Model.PHTGL_AttachUrl19 GetPHTGL_AttachUrl19ById(string attachUrlId)
{
return Funs.DB.PHTGL_AttachUrl19.FirstOrDefault(e => e.AttachUrlId == attachUrlId);
}
public static void AddPHTGL_AttachUrl19(Model.PHTGL_AttachUrl19 newtable)
{
Model.PHTGL_AttachUrl19 table = new Model.PHTGL_AttachUrl19();
table.AttachUrlItemId = newtable.AttachUrlItemId;
table.AttachUrlId = newtable.AttachUrlId;
table.AttachUrlContent = newtable.AttachUrlContent;
Funs.DB.PHTGL_AttachUrl19.InsertOnSubmit(table);
Funs.DB.SubmitChanges();
}
public static void UpdatePHTGL_AttachUrl19(Model.PHTGL_AttachUrl19 newtable)
{
Model.PHTGL_AttachUrl19 table = Funs.DB.PHTGL_AttachUrl19.FirstOrDefault(e => e.AttachUrlId == newtable.AttachUrlId);
if (table != null)
{
table.AttachUrlItemId = newtable.AttachUrlItemId;
table.AttachUrlId = newtable.AttachUrlId;
table.AttachUrlContent = newtable.AttachUrlContent;
Funs.DB.SubmitChanges();
}
}
}
}