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 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 id, string conn) { try { FormICSAutoCMPOPADDDLL.Delete(id, conn); } catch (Exception ex) { throw ex; } } } }