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.

15 lines
485 B
C#

using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Util;
using System.Collections;
namespace Estsh.Core.Services.IServices
{
public interface IPurchaseExportService : IBaseService<SysVendor>
{
public List<KeyValueResult> getOrderList(String dtpSeDate);
public List<KeyValueResult> geVendorList(String orderNo);
public Hashtable ExportDataToExcel(string folder, string orderNo, string vendorCode, string excelTemplate);
}
}