24 lines
527 B
C#
24 lines
527 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using dccdc.Models;
|
|
|
|
namespace dccdc.BLL
|
|
{
|
|
public class yanzhengBLL
|
|
{
|
|
public yanzhengModel getYZ(string id)
|
|
{
|
|
return new DAL.yanzhengDal().getYZ(id);
|
|
}
|
|
|
|
public Models.yanzhengModel yanZhen(string pno, string yzcod)
|
|
{
|
|
//throw new NotImplementedException();
|
|
return new DAL.yanzhengDal().yanZhen(pno, yzcod);
|
|
}
|
|
}
|
|
}
|