19 lines
460 B
C#
19 lines
460 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using DOAN.Model.MES.upload;
|
|
using DOAN.Model;
|
|
|
|
namespace DOAN.Service.quality.upload
|
|
{
|
|
public interface IUploadServive
|
|
{
|
|
public PagedInfo<QcYidaExcel> SelectExcelList(string partnumber, string workstation, string paramter, PagerInfo pager);
|
|
|
|
public int GOcloud(List<QcYidaExcel> qcYidas,string CreatedBy);
|
|
|
|
}
|
|
}
|