You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
900 B
C#
25 lines
900 B
C#
using Dapper;
|
|
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Repositories;
|
|
using System.Collections;
|
|
using System.Data;
|
|
|
|
namespace Estsh.Core.Repository.IRepositories
|
|
{
|
|
public interface ISampleTestDefineRepository : IBaseRepository<GAbTestplan>
|
|
{
|
|
public List<GAbTestplan> GetList(string strWhere, string filedOrder);
|
|
public DataTable GetDataTable(string strWhere, string filedOrder);
|
|
|
|
public Hashtable GetListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
public List<KeyValueResult> GetSelectModelType();
|
|
public List<KeyValueResult> GetSelectModel();
|
|
public int Insert(GAbTestplan htParams);
|
|
public int Update(GAbTestplan htParams);
|
|
public int Delete(String testplan_id);
|
|
public int EnableData(String ids);
|
|
public int DisableData(String ids);
|
|
}
|
|
}
|