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.
64 lines
1.7 KiB
64 lines
1.7 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Data;
|
|
using ICSSoft.Frame.Data.DAL;
|
|
using ICSSoft.Frame.Data.Entity;
|
|
|
|
namespace ICSSoft.Frame.Data.BLL
|
|
{
|
|
public class ICSLLDisposeInFoBLL
|
|
{
|
|
#region AddandEditList
|
|
//public static void AddandEditList(List<ICSLLDisposeInFo> ItemLotList, string Appconstr)
|
|
//{
|
|
// try
|
|
// {
|
|
// ICSLLDisposeInFoDAL.AddandEditList(ItemLotList, Appconstr);
|
|
// }
|
|
// catch (Exception ex)
|
|
// {
|
|
// throw ex;
|
|
// }
|
|
//}
|
|
#endregion
|
|
|
|
|
|
|
|
//public static void EditCompleteInformation(ICSLLDisposeInFo ItemLotList, string Appconstr)
|
|
//{
|
|
// try
|
|
// {
|
|
// ICSLLDisposeInFoDAL.EditCompleteInformation(ItemLotList, Appconstr);
|
|
// }
|
|
// catch (Exception ex)
|
|
// {
|
|
// throw ex;
|
|
// }
|
|
//}
|
|
//public static void LLDisposeAgainEdit(List<ICSLLDisposeInFoAgain> ItemLotList, string Appconstr)
|
|
//{
|
|
// try
|
|
// {
|
|
// ICSLLDisposeInFoDAL.LLDisposeAgainEdit(ItemLotList, Appconstr);
|
|
// }
|
|
// catch (Exception ex)
|
|
// {
|
|
// throw ex;
|
|
// }
|
|
//}
|
|
|
|
public static void LLDisposeAgainEditByLOTNO(List<ICSLLDisposeInFoAgain> ItemLotList, string Appconstr)
|
|
{
|
|
try
|
|
{
|
|
ICSLLDisposeInFoDAL.LLDisposeAgainEditByLOTNO(ItemLotList, Appconstr);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
}
|
|
}
|