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.
50 lines
1.0 KiB
50 lines
1.0 KiB
using ICSSoft.Frame.Data.DAL;
|
|
using ICSSoft.Frame.Data.Entity;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ICSSoft.Frame.Data.BLL
|
|
{
|
|
public class FormICSAutoCMPOPADDBLL
|
|
{
|
|
|
|
public static void AddorEdit(List<ICSAutoCMPOP> list, string conn)
|
|
{
|
|
|
|
try {
|
|
FormICSAutoCMPOPADDDLL.AddorEdit(list, conn);
|
|
}
|
|
catch (Exception ex) {
|
|
throw ex;
|
|
}
|
|
}
|
|
|
|
public static ICSAutoCMPOP Search(string id, string conn) {
|
|
|
|
try
|
|
{
|
|
return FormICSAutoCMPOPADDDLL.Search(id, conn);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
|
|
}
|
|
|
|
public static void Delete(List<string> id, string conn)
|
|
{
|
|
try
|
|
{
|
|
FormICSAutoCMPOPADDDLL.Delete(id, conn);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|