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
1.0 KiB
C#

using Estsh.Core.Model.ExcelModel;
using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Util;
using System.Collections;
namespace Estsh.Core.Services.IServices
{
public interface IVendorService : IBaseService<SysVendor>
{
public Hashtable getVendorListByPage(String enabled, String vendor_code, String vendor_name, int factoryId, Pager pager, String direction, String sort);
public int saveVendor(SysVendor htParams);
public int updateVendor(SysVendor htParams);
public SysVendor getVendorByExistName(string vendorCode);
public Hashtable ImportExcel(List<VendorDock> inputStream, int factoryId, string factoryCode, int empId);
public List<SysVendor> getVendor(String vendor_id);
public int deleteVendor(String ids);
public List<KeyValueResult> getSelectVendor();
public int EnableVendor(String ids);
public int DisableVendor(String ids);
public List<Vendor> getExportList(string vendorCode, string vendorName, string enabled, int factoryId);
}
}