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 { public List getOrderList(String dtpSeDate); public List geVendorList(String orderNo); public Hashtable ExportDataToExcel(string folder, string orderNo, string vendorCode, string excelTemplate); } }