Newer
Older
IRIS_COLLECT / IOM_cs / irisDb / service / IRecognitionService.cs
yangqianqian on 29 Dec 2020 364 bytes first
using IOM_cs.irisDb.model;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;

namespace IOM_cs.irisDb.service
{
    public interface IRecognitionService
    {
        DataTable getAllIrisCodeLocal();

        int GetInfoById(Int64 personId, ref string deptName, ref Person person);
    }
}