You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
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<string> 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; } }
} }
|