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.
17 lines
686 B
C#
17 lines
686 B
C#
using Estsh.Core.Base;
|
|
using Estsh.Core.Model.ExcelModel;
|
|
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Services;
|
|
using Estsh.Core.Util;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.Services.IServices
|
|
{
|
|
public interface IQualityResultService : IBaseService<BaseEntity>
|
|
{
|
|
public Hashtable getInQCListByPage(string prove, string evrtn, string matnr, string partSpec, string beginSynTim, string endSynTim, string synflg, Pager pager, String direction, String sort);
|
|
public List<QualityResult> getSearchDataList(string prove, string evrtn, string matnr, string partSpec, string beginSynTim, string endSynTim, string synflg);
|
|
}
|
|
}
|