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 ICSSoft.Frame.Data.Entity;
namespace ICSSoft.Frame.Data.BLL { public class ICSIPQCKGROUP2LISTBLL { #region AddandEdit
public static void AddandEdit(ICSIPQCKGROUP2LIST ItemLot, string Appconstr) { try { ICSIPQCKGROUP2LISTDAL.AddandEdit(ItemLot, Appconstr); } catch (Exception ex) { throw ex; } } #endregion
#region delete
public static void delete(List<String> guidList) { ICSOQCCKGROUP2LISTDAL.delete(guidList); } #endregion
#region 导入
public static void AddAndEditList(List<ICSIPQCKGROUP2LIST> ECCodeList, string Appconstr) { try { ICSIPQCKGROUP2LISTDAL.AddAndEditList(ECCodeList, Appconstr); } catch (Exception ex) { throw ex; } } #endregion
} }
|