Files
T-DAS/Epost.BLL/Print_BoxBLL.cs
2025-06-05 15:11:19 +08:00

38 lines
830 B
C#

using Epost.DAL;
using Epost.Model;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.BLL
{
public class Print_BoxBLL
{
Print_BoxDAL dal = new Print_BoxDAL();
#region
public DataTable GetPrintList(string block)
{
return dal.GetPrintList(block);
}
#endregion
#region
public bool UpPrintList(string id)
{
return dal.UpPrintList(id);
}
#endregion
#region
public bool InsertPrint(JobModel model, int boxno, int totalcount)
{
return dal.InsertPrint(model, boxno,totalcount);
}
#endregion
}
}