using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; namespace FangYar.IDAL { public interface CommomIDAL { int Count(string table, string strwhere); string GetJsonList(string field, string table, string strwhere); DataTable GetTableList(string field, string table, string strwhere); DataTable GetTableList(string sql); DataTable GetMonthCount(string field, string talbe, string year, string where); string GetJsonMonthCount(string field, string table, string year, string where); string QueryJsonList(int PageIndex, int PageSize,string table, string strwhere); string QueryJsonList(int PageIndex, int PageSize,string table, string strwhere, string order); DataTable QueryPage(int PageIndex, int PageSize,string table, string strwhere); DataTable QueryPage(int PageIndex, int PageSize,string table, string strwhere, string order); } }