Newer
Older
IRIS_COLLECT / IOM_cs / irisDb / service / IDeptService.cs
yangqianqian on 29 Dec 2020 325 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 IDeptService
    {
        int AddDept(Dept dept);

        int clearDept();

        DataTable GetDepts();
    }
}