using System; using System.Collections.Generic; using System.Linq; using System.Text; using ICSSoft.Frame.Data.DAL; using System.Data; using ICSSoft.Frame.Data.Entity; namespace ICSSoft.Frame.Data.BLL { public static class ICSStorageInfoBLL { public static void import(List barList) { try { ICSStorageInfoDAL.import(barList); } catch (Exception ex) { throw ex; } } public static void StorageIn(string barCodeStr,string storage,string stack) { try { ICSStorageInfoDAL.StorageIn(barCodeStr, storage, stack); } catch (Exception ex) { throw ex; } } public static void Delete(string delStr) { try { ICSStorageInfoDAL.Delete(delStr); } catch (Exception ex) { throw ex; } } public static void storageInERP(string barCodeStr, storageInfoContext context) { try { ICSStorageInfoDAL.StorageInERP(barCodeStr, context); } catch (Exception ex) { throw ex; } } } }