25 lines
484 B
C#
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);
|
|
}
|
|
}
|
|
}
|