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.

24 lines
953 B
C#

using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Util;
using NPOI.HSSF.UserModel;
using System.Collections;
namespace Estsh.Core.Services.IServices
{
public interface IPurchaseNoteService : IBaseService<SysStock>
{
public Hashtable ReadExcelFile(Stream inputStream, int userID);
public string ReadDaySchedule(HSSFWorkbook hsWorkbook, int iSheetCount);
public string ReadWeekDate(HSSFWorkbook hsWorkbook);
public string ReadWeekSchedule(HSSFWorkbook hsWorkbook, int iSheetCount, int userID);
public string[] GetSupplierInfo(HSSFSheet hsSheet, int userID);
public string GetCellValue(HSSFCell hsCell);
public string GetTimeCellValue(HSSFCell hsCell);
public string SeparateByColon(string src);
public string Separater(string src, string split, int flag);
public bool IsNumeric(string src);
public string GetDateTimeFlag();
}
}