20 lines
385 B
C#
20 lines
385 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Data;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using SOH.Entities;
|
|||
|
|
|
|||
|
|
namespace SOH.BLL
|
|||
|
|
{
|
|||
|
|
public interface Its_khComm
|
|||
|
|
{
|
|||
|
|
List<ts_khlx> Getkhlx();
|
|||
|
|
List<ts_khly> Getkhly();
|
|||
|
|
List<ts_khzt> Getkhzt();
|
|||
|
|
List<ts_quyu> Getquyu();
|
|||
|
|
List<ts_hangye> Gethangye();
|
|||
|
|
DataTable GetXsy();
|
|||
|
|
}
|
|||
|
|
}
|