You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.2 KiB
44 lines
1.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FangYar.BLL.TBL
|
|
{
|
|
public class DiaySignBLL
|
|
{
|
|
private static readonly FangYar.IDAL.TBL.DiaySignIDAL dal = FangYar.DALFactory.Factory.GetDiaySignDAL();
|
|
|
|
|
|
/// <summary>
|
|
/// 保存信息
|
|
/// </summary>
|
|
/// <param name="model">保存数据信息对象</param>
|
|
/// <returns></returns>
|
|
public bool SaveDB(Model.TBL.TBL_DIAY_SIGN model)
|
|
{
|
|
return dal.SaveDB(model);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 查询信息集合
|
|
/// </summary>
|
|
/// <param name="dto">查询数据信息模型</param>
|
|
/// <returns></returns>
|
|
public List<Model.TBL.TBL_DIAY_SIGN> Queyr(Model.TBL.TBL_DIAY_SIGN dto)
|
|
{
|
|
return dal.Queyr(dto);
|
|
}
|
|
/// <summary>
|
|
/// 查询单个数据模型
|
|
/// </summary>
|
|
/// <param name="dto">查询数据信息模型</param>
|
|
/// <returns></returns>
|
|
public Model.TBL.TBL_DIAY_SIGN QueyrObj(Model.TBL.TBL_DIAY_SIGN dto)
|
|
{
|
|
return dal.QueyrObj(dto);
|
|
}
|
|
|
|
}
|
|
}
|
|
|