31 lines
746 B
C#
31 lines
746 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Data;
|
|
namespace AIMS.PublicUI.BLL
|
|
{
|
|
public class PrintDoc
|
|
{
|
|
public static Model.PrintDoc GetModel(int Id)
|
|
{
|
|
return new DAL.PrintDocDB().GetModel(Id);
|
|
}
|
|
|
|
public static void Add(Model.PrintDoc PrintDocObj)
|
|
{
|
|
new DAL.PrintDocDB().Add(PrintDocObj);
|
|
}
|
|
|
|
public static void Update(Model.PrintDoc PrintDocObj)
|
|
{
|
|
new DAL.PrintDocDB().Update(PrintDocObj);
|
|
}
|
|
|
|
public static DataTable GetDataTable(int ApplyId, string PrintName)
|
|
{
|
|
return new DAL.PrintDocDB().GetDataTable(ApplyId, PrintName);
|
|
}
|
|
}
|
|
}
|