tijian_tieying/web/dccdc.BLL/sqdyBll.cs
2025-02-20 12:14:39 +08:00

25 lines
484 B
C#

using dccdc.DAL;
using dccdc.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace dccdc.BLL
{
public class sqdyBll
{
private sqdyDal Dal = new sqdyDal();
public List<sqdyModel> GetListByType(string type)
{
return Dal.GetListByType(type);
}
public string Add(sqdyModel model)
{
return Dal.Add(model);
}
}
}