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(); } }