34 lines
942 B
C#
34 lines
942 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 zzjBLL
|
|||
|
|
{
|
|||
|
|
DAL.zzjDal _dal = new DAL.zzjDal();
|
|||
|
|
public object getYYList(string id,int jgid)
|
|||
|
|
{
|
|||
|
|
//throw new NotImplementedException();
|
|||
|
|
return _dal.getYYList(id,jgid);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 自助机登记
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="id"></param>
|
|||
|
|
/// <param name="img"></param>
|
|||
|
|
/// <param name="csrq"></param>
|
|||
|
|
/// <param name="idcard"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
public OperationResult register(string id, string img, string csrq, string idcard,string jtzz,string xm,string regp)
|
|||
|
|
{
|
|||
|
|
//throw new NotImplementedException();
|
|||
|
|
return _dal.register(id, img, csrq, idcard,jtzz,xm,regp);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|