using Model;
using Model.DTO;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BLL
{
public class ManagerBLL : BaseBLL<Commodity>
{
static string typeName = "AccressDAL";
private IDAL.idals<Commodity> ids;
public ManagerBLL() : base(typeName)
{
ids = base.t;
}
public int Delete(string id)
{
return ids.Delete(id);
}
public int Dels(int id)
{
return ids.Dels(id);
}
public PageList<Commodity> FyShowlist(ParaModel model)
{
return ids.FyShowlist(model);
}
public int Adection(Commodity asd)
{
return ids.Adection(asd);
}
public List<Housepe> Hshow()
{
return ids.Hshow();
}
public List<Ridgepole> Rshow()
{
return ids.Rshow();
}
public List<States> Sshow()
{
return ids.Sshow();
}
public List<Housing> Xshow()
{
return ids.Xshow();
}
}
}