华恒Mes鼎捷代码
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.

103 lines
2.2 KiB

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 ICSMODELBLL
{
#region AddandEdit
public static void AddandEdit(ICSMODEL ItemLot, string Appconstr)
{
try
{
ICSMODELDAL.AddandEdit(ItemLot, Appconstr);
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region select
public static ICSMODEL select(String guid, String Appconstr)
{
try
{
return ICSMODELDAL.select(guid, Appconstr);
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region delete
public static void delete(List<String> guidList, List<String> codeList)
{
try
{
ICSMODELDAL.delete(guidList, codeList);
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region AddandEdit
public static void AddandEdit(List<ICSINVOPPrice> ItemLot, string Appconstr,String type)
{
try
{
ICSMODELDAL.AddandEdit(ItemLot, Appconstr,type);
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region delete
public static void deleteprice(List<String> guidList)
{
try
{
ICSMODELDAL.deleteprice(guidList);
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region select
public static ICSINVOPPrice selectprice(String guid, String Appconstr)
{
try
{
return ICSMODELDAL.selectprice(guid, Appconstr);
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
}
}